[PR #78] [MERGED] Area #251

Closed
opened 2026-05-05 11:56:58 -06:00 by gitea-mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/kusti8/proton-native/pull/78
Author: @mischnic
Created: 4/2/2018
Status: Merged
Merged: 5/2/2018
Merged by: @kusti8

Base: masterHead: area


📝 Commits (10+)

  • cb61084 Area
  • 7059572 Update, percentages as values, transforms!
  • 943f3f5 Rename Area elements, Circle, CSS colors
  • bcbd081 Transform: matrix, skew
  • 945124c Add Path
  • 04a3c05 Add fill & stroke options, fix transforms
  • 022c627 Inheriting props
  • 6854fa0 Fix area events, start on documentation
  • cd2215f Complete documentation
  • 0fe9f09 Properly apply transforms, complete sidebar

📊 Changes

20 files changed (+1833 additions, -20 deletions)

View changed files

📝 README.md (+10 -11)
📝 docs/_sidebar.md (+9 -0)
docs/component_APIs/area.md (+108 -0)
docs/component_APIs/area_arc.md (+83 -0)
docs/component_APIs/area_bezier.md (+114 -0)
docs/component_APIs/area_circle.md (+58 -0)
docs/component_APIs/area_group.md (+44 -0)
docs/component_APIs/area_line.md (+67 -0)
docs/component_APIs/area_path.md (+61 -0)
docs/component_APIs/area_props.md (+175 -0)
docs/component_APIs/area_rectangle.md (+73 -0)
examples/area.js (+180 -0)
📝 package-lock.json (+52 -7)
📝 package.json (+2 -1)
src/components/Area.js (+694 -0)
📝 src/components/index.js (+2 -0)
📝 src/index.js (+11 -0)
src/react-components/Area.js (+79 -0)
📝 src/react-components/index.js (+2 -1)
📝 src/utils/createElement.js (+9 -0)

📄 Description

To be fixed in a future PR (issues with libui-node - mostly already fixed):

  • Area's onMouseUp doesn't work at the moment
  • supply modifier/ext keys themselves
  • Some memory leaks (esp. regarding area events)
  • remove workaround for transform: scale (https://github.com/andlabs/libui/issues/331)
  • Gradients

Out of scope for now:

  • Clipping

🔄 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/kusti8/proton-native/pull/78 **Author:** [@mischnic](https://github.com/mischnic) **Created:** 4/2/2018 **Status:** ✅ Merged **Merged:** 5/2/2018 **Merged by:** [@kusti8](https://github.com/kusti8) **Base:** `master` ← **Head:** `area` --- ### 📝 Commits (10+) - [`cb61084`](https://github.com/kusti8/proton-native/commit/cb61084e9a310995c6d5f0f071f9781e293dc261) Area - [`7059572`](https://github.com/kusti8/proton-native/commit/70595721648392e2a4768a3da5bbf14f861b7d7d) Update, percentages as values, transforms! - [`943f3f5`](https://github.com/kusti8/proton-native/commit/943f3f5a28d3825c4edea67fdd49f9c0691bf4b1) Rename Area elements, Circle, CSS colors - [`bcbd081`](https://github.com/kusti8/proton-native/commit/bcbd081de7ad1e110f3e1aeb52cdad9228c05af8) Transform: matrix, skew - [`945124c`](https://github.com/kusti8/proton-native/commit/945124c3d0442a4e04fb6f9c7866ef9166a064e9) Add Path - [`04a3c05`](https://github.com/kusti8/proton-native/commit/04a3c05c637bcde4b53ac7b52fdd4b85efb62884) Add fill & stroke options, fix transforms - [`022c627`](https://github.com/kusti8/proton-native/commit/022c627e75e07c5186dd776a0d8f81f3404b7ca5) Inheriting props - [`6854fa0`](https://github.com/kusti8/proton-native/commit/6854fa07fa902c7ab70d50bc3c9fe879c2ab3f71) Fix area events, start on documentation - [`cd2215f`](https://github.com/kusti8/proton-native/commit/cd2215f423c2111f69dea5ce2a7300b0a05614bd) Complete documentation - [`0fe9f09`](https://github.com/kusti8/proton-native/commit/0fe9f09e9e2e0fed90f0f2146bc54c9d1e1f30eb) Properly apply transforms, complete sidebar ### 📊 Changes **20 files changed** (+1833 additions, -20 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+10 -11) 📝 `docs/_sidebar.md` (+9 -0) ➕ `docs/component_APIs/area.md` (+108 -0) ➕ `docs/component_APIs/area_arc.md` (+83 -0) ➕ `docs/component_APIs/area_bezier.md` (+114 -0) ➕ `docs/component_APIs/area_circle.md` (+58 -0) ➕ `docs/component_APIs/area_group.md` (+44 -0) ➕ `docs/component_APIs/area_line.md` (+67 -0) ➕ `docs/component_APIs/area_path.md` (+61 -0) ➕ `docs/component_APIs/area_props.md` (+175 -0) ➕ `docs/component_APIs/area_rectangle.md` (+73 -0) ➕ `examples/area.js` (+180 -0) 📝 `package-lock.json` (+52 -7) 📝 `package.json` (+2 -1) ➕ `src/components/Area.js` (+694 -0) 📝 `src/components/index.js` (+2 -0) 📝 `src/index.js` (+11 -0) ➕ `src/react-components/Area.js` (+79 -0) 📝 `src/react-components/index.js` (+2 -1) 📝 `src/utils/createElement.js` (+9 -0) </details> ### 📄 Description To be fixed in a future PR (issues with libui-node - mostly already fixed): - Area's `onMouseUp` doesn't work at the moment - supply modifier/ext keys themselves - Some memory leaks (esp. regarding area events) - remove workaround for transform: scale (https://github.com/andlabs/libui/issues/331) - Gradients Out of scope for now: - Clipping --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
gitea-mirror 2026-05-05 11:56:58 -06: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: github-starred/proton-native#251
No description provided.