search
HomeWeb Front-endJS TutorialRevolutionizing Drag-and-Drop in React: Introducing Puck 8

Puck 0.18: The Next-Generation React Visual Editor is Here!

Get ready for a massive upgrade! Puck, the open-source visual editor for React, just launched version 0.18, featuring a revolutionary drag-and-drop engine with full CSS Grid and Flexbox support. This unlocks unprecedented design flexibility for your page builders and no-code applications.

Give Puck a star on GitHub! ⭐

This update eliminates previous limitations, allowing users to drag and drop any component anywhere on the canvas. Imagine the possibilities:

Revolutionizing Drag-and-Drop in React: Introducing Puck 8

Now, your users can create virtually any design imaginable—all without writing code. No more compromises; pure creative freedom awaits!

Puck 0.18 isn't just an improvement; it's a transformation into the ultimate design-in-browser tool. Its adaptability scales to your specific needs, from simple page-level blocks to highly granular visual layout builders for atomic components. Build websites, document editors, infographic designers—if it's built with React components, Puck can handle it.

Let's explore the key features:

(For detailed information, see the official release notes and changelog.)

Updating to Puck 0.18

Updating is easy! For new projects:

npm install @measured/puck --save

For existing projects:

npm update @measured/puck

No breaking changes mean a smooth transition! ?

Free-Form Drag and Drop

The new drag-and-drop engine is a game-changer. Previous versions had limitations, primarily restricting drag-and-drop to the vertical axis. While the DropZoneAPI allowed for multi-column layouts, manual component positioning was cumbersome.

Revolutionizing Drag-and-Drop in React: Introducing Puck 8

Now, freely drag and drop components in any direction. Puck provides instant visual feedback:

Revolutionizing Drag-and-Drop in React: Introducing Puck 8

Setting this up is simple. Style your wrapper DropZone as a grid or flexbox in your Puck config:

  Grid: {
    //... fields configuration
    render: ({ columns }) => (
     <dropzone zone="my-grid"><p>This transforms the DropZone's div into a CSS grid, ensuring automatic alignment.  The same applies to flex containers.</p>

<h3 id="Advanced-CSS-Layouts">Advanced CSS Layouts</h3>

Previously, all Puck components were wrapped in a div, hindering direct descendant treatment within CSS grid or flex layouts.  The new `inline` parameter removes this wrapper, enabling expected behavior for rules like `flex-grow` or `grid-column`.

For example, create a customizable card grid using `grid-column` and `grid-row`:

```javascript
Card: {
  //... fields configuration
  inline: true, // Remove default wrapper
  render: ({ spanRow, spanCol, puck }) => {
    return (
      <div>
      </div>
    );
  },
};

Users can build sophisticated layouts by adjusting editor fields:

Revolutionizing Drag-and-Drop in React: Introducing Puck 8

This also works with flex containers, creating responsive layouts:

Revolutionizing Drag-and-Drop in React: Introducing Puck 8

This empowers more ambitious layouts and interactive experiences.

Dragging Between DropZones

Drag components between any DropZone containers! Previously, dragging was limited to zones sharing the same parent. Now, move components seamlessly between siblings, nested children, or parents—no extra setup needed.

Revolutionizing Drag-and-Drop in React: Introducing Puck 8

(Use the allow prop on DropZone for component restrictions.)

Dynamic DropZone Height

DropZones now dynamically adjust their height to match their children, providing accurate render previews. Configure a placeholder height (minEmptyHeight) for empty DropZones to maintain consistent layouts.

npm install @measured/puck --save

Revolutionizing Drag-and-Drop in React: Introducing Puck 8

Extending Component Drawers with Grids

The component Drawer (sidebar) can now be displayed as a grid, thanks to the new drag-and-drop engine.

Revolutionizing Drag-and-Drop in React: Introducing Puck 8

More in 0.18!

  • Interactive hotkey (cmd/ctrl i) to toggle component interactivity.
  • "Select parent" action in the action bar.
  • Removed position: fixed from the default layout for easier app embedding.
  • New <actionbar.label></actionbar.label> component for action bar organization.

Explore the updated documentation for a deeper dive!

Closing Thoughts

Puck 0.18 is a community effort. Thank you for your feedback and contributions! Share your creations and connect with us on Discord, Bluesky, and X. And don't forget to give us a ? on GitHub! Let's see what you build next! ?

The above is the detailed content of Revolutionizing Drag-and-Drop in React: Introducing Puck 8. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Python and JavaScript: Understanding the Strengths of EachPython and JavaScript: Understanding the Strengths of EachMay 06, 2025 am 12:15 AM

Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

JavaScript's Core: Is It Built on C or C  ?JavaScript's Core: Is It Built on C or C ?May 05, 2025 am 12:07 AM

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript Applications: From Front-End to Back-EndJavaScript Applications: From Front-End to Back-EndMay 04, 2025 am 12:12 AM

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Python vs. JavaScript: Which Language Should You Learn?Python vs. JavaScript: Which Language Should You Learn?May 03, 2025 am 12:10 AM

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

JavaScript Frameworks: Powering Modern Web DevelopmentJavaScript Frameworks: Powering Modern Web DevelopmentMay 02, 2025 am 12:04 AM

The power of the JavaScript framework lies in simplifying development, improving user experience and application performance. When choosing a framework, consider: 1. Project size and complexity, 2. Team experience, 3. Ecosystem and community support.

The Relationship Between JavaScript, C  , and BrowsersThe Relationship Between JavaScript, C , and BrowsersMay 01, 2025 am 12:06 AM

Introduction I know you may find it strange, what exactly does JavaScript, C and browser have to do? They seem to be unrelated, but in fact, they play a very important role in modern web development. Today we will discuss the close connection between these three. Through this article, you will learn how JavaScript runs in the browser, the role of C in the browser engine, and how they work together to drive rendering and interaction of web pages. We all know the relationship between JavaScript and browser. JavaScript is the core language of front-end development. It runs directly in the browser, making web pages vivid and interesting. Have you ever wondered why JavaScr

Node.js Streams with TypeScriptNode.js Streams with TypeScriptApr 30, 2025 am 08:22 AM

Node.js excels at efficient I/O, largely thanks to streams. Streams process data incrementally, avoiding memory overload—ideal for large files, network tasks, and real-time applications. Combining streams with TypeScript's type safety creates a powe

Python vs. JavaScript: Performance and Efficiency ConsiderationsPython vs. JavaScript: Performance and Efficiency ConsiderationsApr 30, 2025 am 12:08 AM

The differences in performance and efficiency between Python and JavaScript are mainly reflected in: 1) As an interpreted language, Python runs slowly but has high development efficiency and is suitable for rapid prototype development; 2) JavaScript is limited to single thread in the browser, but multi-threading and asynchronous I/O can be used to improve performance in Node.js, and both have advantages in actual projects.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool