[PR #69] [MERGED] feat: improve features #130

Closed
opened 2026-03-01 14:40:12 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

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

Base: mainHead: feat/col


📝 Commits (10+)

📊 Changes

22 files changed (+379 additions, -151 deletions)

View changed files

📝 apps/web/app/(playground)/playground/page.tsx (+2 -6)
📝 apps/web/app/(playground)/template/[templateId]/page.tsx (+2 -12)
📝 apps/web/app/(playground)/template/page.tsx (+2 -9)
📝 apps/web/components/editor-preview.tsx (+110 -79)
apps/web/components/editor-topbar.tsx (+41 -0)
📝 apps/web/stores/editor-store.tsx (+10 -0)
📝 packages/core/src/blocks/layout.tsx (+12 -0)
📝 packages/core/src/editor/components/column-menu/columns-bubble-menu-content.tsx (+35 -0)
📝 packages/core/src/editor/components/column-menu/columns-bubble-menu.tsx (+1 -1)
📝 packages/core/src/editor/components/column-menu/use-columns-state.tsx (+2 -0)
📝 packages/core/src/editor/components/content-menu.tsx (+1 -1)
📝 packages/core/src/editor/components/for-menu/for-bubble-menu.tsx (+4 -4)
📝 packages/core/src/editor/components/for-menu/use-for-state.ts (+2 -0)
📝 packages/core/src/editor/components/section-menu/section-bubble-menu.tsx (+13 -1)
📝 packages/core/src/editor/components/show-popover.tsx (+15 -5)
📝 packages/core/src/editor/components/ui/link-input-popover.tsx (+2 -2)
📝 packages/core/src/editor/extensions/slash-command/default-slash-commands.ts (+2 -1)
📝 packages/core/src/editor/nodes/columns/columns.ts (+18 -1)
📝 packages/core/src/editor/nodes/variable/variable-suggestions.tsx (+66 -19)
packages/core/src/editor/utils/delete-node.ts (+19 -0)

...and 2 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/69 **Author:** [@arikchakma](https://github.com/arikchakma) **Created:** 11/11/2024 **Status:** ✅ Merged **Merged:** 11/13/2024 **Merged by:** [@arikchakma](https://github.com/arikchakma) **Base:** `main` ← **Head:** `feat/col` --- ### 📝 Commits (10+) - [`565866c`](https://github.com/arikchakma/maily.to/commit/565866c005be01ad4f81acb8438f5ce1bc5c00d1) feat: columns responsiveness - [`aa510ca`](https://github.com/arikchakma/maily.to/commit/aa510cadd2fa2998cfb81c0ef62d9d7965d5d0e8) fix: update variable suggestion UI - [`1b48cb3`](https://github.com/arikchakma/maily.to/commit/1b48cb36cd132c326c79e407fc1e76e1ba95af50) fix: for bubble menu position - [`d32910e`](https://github.com/arikchakma/maily.to/commit/d32910eeee8194a20ddc097d0a04891808c0d975) fix: update icon - [`3927c41`](https://github.com/arikchakma/maily.to/commit/3927c41811ec7c2d591400c19cd57efb14f9ff55) feat: delete node - [`d5654a0`](https://github.com/arikchakma/maily.to/commit/d5654a01f52f0937cadeec07dc9103f7435febe4) fix: hide for bubble menu - [`ad7c689`](https://github.com/arikchakma/maily.to/commit/ad7c6894052fb7797cdc39ade04402db9f0d8fab) fix: active show colors - [`5a6bbdc`](https://github.com/arikchakma/maily.to/commit/5a6bbdc804c023af7633a5887a513372febcdc4d) fix: content menu padding - [`13cd226`](https://github.com/arikchakma/maily.to/commit/13cd2266ffb7fafbcceb37504b8b7373260f6c51) feat: dim element on focus - [`f306a46`](https://github.com/arikchakma/maily.to/commit/f306a461a752eb70ed9262b1cf762c132e3f0bb2) fix: revert the opacity ### 📊 Changes **22 files changed** (+379 additions, -151 deletions) <details> <summary>View changed files</summary> 📝 `apps/web/app/(playground)/playground/page.tsx` (+2 -6) 📝 `apps/web/app/(playground)/template/[templateId]/page.tsx` (+2 -12) 📝 `apps/web/app/(playground)/template/page.tsx` (+2 -9) 📝 `apps/web/components/editor-preview.tsx` (+110 -79) ➕ `apps/web/components/editor-topbar.tsx` (+41 -0) 📝 `apps/web/stores/editor-store.tsx` (+10 -0) 📝 `packages/core/src/blocks/layout.tsx` (+12 -0) 📝 `packages/core/src/editor/components/column-menu/columns-bubble-menu-content.tsx` (+35 -0) 📝 `packages/core/src/editor/components/column-menu/columns-bubble-menu.tsx` (+1 -1) 📝 `packages/core/src/editor/components/column-menu/use-columns-state.tsx` (+2 -0) 📝 `packages/core/src/editor/components/content-menu.tsx` (+1 -1) 📝 `packages/core/src/editor/components/for-menu/for-bubble-menu.tsx` (+4 -4) 📝 `packages/core/src/editor/components/for-menu/use-for-state.ts` (+2 -0) 📝 `packages/core/src/editor/components/section-menu/section-bubble-menu.tsx` (+13 -1) 📝 `packages/core/src/editor/components/show-popover.tsx` (+15 -5) 📝 `packages/core/src/editor/components/ui/link-input-popover.tsx` (+2 -2) 📝 `packages/core/src/editor/extensions/slash-command/default-slash-commands.ts` (+2 -1) 📝 `packages/core/src/editor/nodes/columns/columns.ts` (+18 -1) 📝 `packages/core/src/editor/nodes/variable/variable-suggestions.tsx` (+66 -19) ➕ `packages/core/src/editor/utils/delete-node.ts` (+19 -0) _...and 2 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-01 14:40:12 +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#130
No description provided.