Shape for M3E
npm install @m3e/shapem3e-shape component allows you to use abstract shapes thoughtfully to add emphasis and decorative flair, including built-in shape morphing.
4-leaf-clover, 4-sided-cookie, 6-sided-cookie, 7-sided-cookie, 8-leaf-clover, 9-sided-cookie, 12-sided-cookie, arch, arrow, boom, bun, burst, circle, diamond, fan, flower, gem, ghost-ish, heart, hexagon, oval, pentagon, pill, pixel-circle, pixel-triangle, puffy, puffy-diamond, semicircle, slanted, soft-boom, soft-burst, square, sunny, triangle, and very-sunny.
bash
npm install @m3e/shape
`
๐ป Editor Integration
This package includes a Custom Elements Manifest to support enhanced editor tooling and developer experience.
$3
To enable autocomplete and hover documentation for @m3e/shape, install the Custom Elements Manifest Language Server extension. It will automatically detect the manifest bundled with this package and surface tag names, attributes, slots, and events in supported files.
Alternately, you can explicitly reference the html-custom-data.json and css-custom-data.json in your workspace settings:
`json
{
"html.customData": ["./node_modules/@m3e/shape/dist/html-custom-data.json"],
"css.customData": ["./node_modules/@m3e/shape/dist/css-custom-data.json"]
}
`
๐ Native Module Support
This package uses JavaScript Modules. To use it directly in a browser without a bundler, use a module script similar to the following.
`html
`
In addition, you must use an import map to include dependencies.
`html
`
> For production, use index.min.js for faster load times.
๐๏ธ Elements
- m3e-shape โ A shape used to add emphasis and decorative flair.
๐งช Examples
The following example illustrates using the m3e-shape component to present the sunny shape.
`html
`
๐ API Reference
This section details the attributes, slots and CSS custom properties available for the m3e-shape component.
$3
| Attribute | Type | Default | Description |
| --------- | ------------------- | ------- | ---------------------- |
| name | ShapeName \| null | null | The name of the shape. |
$3
| Slot | Description |
| ----------- | ----------------------------------------- |
| _(default)_ | Renders the clipped content of the shape. |
$3
| Property | Description |
| ----------------------------- | ------------------------------------------ |
| --m3e-shape-size | Default size of the shape. |
| --m3e-shape-container-color | Container (background) color of the shape. |
| --m3e-shape-transition | Transition used to morph between shapes. |
๐ค Contributing
See the root monorepo CONTRIBUTING.md` for guidelines on contributing to this package.