anentrypoint-design 0.0.203 → 0.0.204

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anentrypoint-design",
3
- "version": "0.0.203",
3
+ "version": "0.0.204",
4
4
  "description": "247420 design system SDK — webjsx + modified ripple-ui, single-file ESM bundle for reproducible use of the AnEntrypoint design.",
5
5
  "type": "module",
6
6
  "main": "./dist/247420.js",
@@ -107,8 +107,8 @@ export function RowLink({ code, title, sub, meta, href = '#', key, target }) {
107
107
  return Row({ code, title, sub, meta, href, kind: 'link', key, target });
108
108
  }
109
109
 
110
- export function Section({ title, eyebrow, children }) {
111
- return h('section', { class: 'ds-section' },
110
+ export function Section({ title, eyebrow, children, id }) {
111
+ return h('section', { class: 'ds-section', id: id || null },
112
112
  eyebrow ? h('span', { class: 'eyebrow' }, eyebrow) : null,
113
113
  title ? h('h3', {}, title) : null,
114
114
  ...(Array.isArray(children) ? children : [children])