npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@tunghtml/strapi-plugin-section-divider

v1.0.13

Published

A Strapi custom field plugin to add visual section dividers in content-type forms

Readme

Strapi Plugin Section Divider

A Strapi custom field plugin that adds visual section dividers to organize your content-type forms.

npm version npm downloads License: MIT

Features

  • 🎨 Visual section dividers with customizable labels
  • 🌓 Automatic theme support (light/dark mode)
  • 📏 Always 100% width for clear separation
  • 🚀 No data storage - purely visual
  • ✨ Seamless integration with Strapi Design System

Installation

npm install @tunghtml/strapi-plugin-section-divider
# or
yarn add @tunghtml/strapi-plugin-section-divider

Configuration

1. Enable the plugin

Add to config/plugins.js:

module.exports = {
  // ...
  "section-divider": {
    enabled: true,
  },
};

2. Rebuild admin panel

npm run build
# or
yarn build

3. Restart Strapi

npm run develop
# or
yarn develop

Usage

Adding a Section Divider

Method 1: Via Content-Type Builder UI

  1. Go to Settings → Content-Type Builder
  2. Select your content-type (e.g., Article, Product)
  3. Click "Add another field"
  4. Select "Section Divider" from the Custom tab
  5. Configure:
    • Name: Field name (e.g., experienceSection)
    • Label: Display text (e.g., "Experience Details")
  6. Click Save

Method 2: Edit schema directly

Add to your content-type schema:

{
  "attributes": {
    "experienceSection": {
      "type": "customField",
      "customField": "plugin::section-divider.section-divider"
    }
  }
}

Organizing Your Form

Use Configure the view to arrange fields:

  1. Go to Settings → Content-Type Builder → [Your Content-Type]
  2. Click "Configure the view" (eye icon)
  3. Drag the section divider fields to organize your form

Example

{
  "kind": "collectionType",
  "collectionName": "products",
  "info": {
    "singularName": "product",
    "pluralName": "products",
    "displayName": "Product"
  },
  "attributes": {
    "name": {
      "type": "string"
    },
    "price": {
      "type": "decimal"
    },

    "detailsSection": {
      "type": "customField",
      "customField": "plugin::section-divider.section-divider"
    },

    "description": {
      "type": "richtext"
    },
    "features": {
      "type": "json"
    },

    "metaSection": {
      "type": "customField",
      "customField": "plugin::section-divider.section-divider"
    },

    "seo": {
      "type": "component",
      "component": "shared.seo"
    }
  }
}

This will create a form with clear visual sections:

┌─────────────────────────────┐
│ name: [input]               │
│ price: [input]              │
│                             │
│ Details                     │
│ ─────────────────────────── │
│                             │
│ description: [richtext]     │
│ features: [json]            │
│                             │
│ Meta                        │
│ ─────────────────────────── │
│                             │
│ seo: [component]            │
└─────────────────────────────┘

Benefits

  • Better UX: Organize complex forms into logical sections
  • No Data Impact: Dividers are purely visual - no database fields created
  • Flexible: Add as many dividers as needed
  • Theme-Aware: Automatically adapts to light/dark mode
  • Easy to Use: Simple drag-and-drop in Content-Type Builder

Compatibility

  • Strapi v4.x
  • Strapi v5.x
  • Node.js >= 18.x

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Issues

Found a bug or have a feature request? Open an issue

License

MIT © Tung Le

Links