@urbicon-ui/design-content 6.3.6 → 6.3.8

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.
@@ -22,8 +22,13 @@ Renders an accessible nav with structured items and customizable separators.
22
22
  </Breadcrumb>
23
23
  ```
24
24
 
25
+ ```svelte
26
+ <Breadcrumb items={deepTrail} maxItems={4} />
27
+ ```
28
+
25
29
  ### Variants
26
30
  - size: lg, md, sm (default: md)
31
+ - wrap: false, true (default: true)
27
32
 
28
33
  ### Api
29
34
  | Prop | Type | Required | Default | Description |
@@ -33,11 +38,16 @@ Renders an accessible nav with structured items and customizable separators.
33
38
  | ...HTMLAttributes<HTMLElement> | `HTMLAttributes` | no | | HTML attributes (excluding: 'children') |
34
39
  | aria-label | `string` | no | 'Breadcrumb' | Accessible label for the nav element |
35
40
  | class | `string` | no | | Additional CSS classes to apply to the Breadcrumb component |
41
+ | expandLabel | `string` | no | 'Show all breadcrumb items' | Accessible label for the "…" button that expands a collapsed trail. |
42
+ | itemsAfterCollapse | `number` | no | 1 | Trailing items kept visible when collapsed; the current page is always included. |
43
+ | itemsBeforeCollapse | `number` | no | 1 | Leading items kept visible when collapsed. |
44
+ | maxItems | `number` | no | | Collapse the trail when it has more than this many items: the middle items fold into a single "…" button that expands the full trail on click. The first `itemsBeforeCollapse` and last `itemsAfterCollapse` items stay visible (the current page is always kept). Omit to never collapse. |
36
45
  | preset | `string` | no | | Apply a named preset registered via `<BlocksProvider presets={{ Breadcrumb: {...} }}>`. Prefer this over `class` overrides when the requested look falls outside the semantic intent palette — presets keep hover/active/dark-mode logic coherent and make the custom look reusable across the project. |
37
46
  | separator | `Snippet` | no | | Custom separator snippet (default: "/") |
38
47
  | size | `'sm' | 'md' | 'lg'` | no | 'md' | Size variant that controls dimensions and spacing of the Breadcrumb |
39
48
  | slotClasses | `Partial<Record<BreadcrumbSlots, string>>` | no | | Per-slot class overrides |
40
49
  | unstyled | `boolean` | no | | Remove default styles |
50
+ | wrap | `boolean` | no | true | Let the trail wrap onto multiple lines (`true`, default) or keep it on a single line where the current page truncates and the ancestor links hold their width (`false`). Use `false` for tight single-line bars such as a sticky header or toolbar. |
41
51
 
42
52
  Inherited from:
43
53
  - BreadcrumbVariants (external)
@@ -2,7 +2,7 @@
2
2
  ---
3
3
 
4
4
  ## SegmentGroup
5
- Inline segment control with animated sliding indicator for single-selection scenarios.
5
+ Segment control with an animated sliding indicator for single selection; collapses to a vertical radio-style stack when its row can't fit the available width.
6
6
  Compact mode/view switcher with smooth animation.
7
7
 
8
8
  **Import:** `import { SegmentGroup } from '@urbicon-ui/blocks';`
@@ -1,5 +1,5 @@
1
1
  {
2
- "generated": "2026-06-24T17:06:02.668Z",
2
+ "generated": "2026-06-24T23:09:16.230Z",
3
3
  "version": "0.2.38",
4
4
  "components": [
5
5
  {
@@ -517,6 +517,14 @@
517
517
  "sm"
518
518
  ],
519
519
  "default": "md"
520
+ },
521
+ {
522
+ "name": "wrap",
523
+ "values": [
524
+ "false",
525
+ "true"
526
+ ],
527
+ "default": "true"
520
528
  }
521
529
  ],
522
530
  "keyProps": [
@@ -524,10 +532,10 @@
524
532
  "...BreadcrumbVariants",
525
533
  "aria-label",
526
534
  "class",
527
- "preset",
528
- "separator",
529
- "size",
530
- "slotClasses"
535
+ "expandLabel",
536
+ "itemsAfterCollapse",
537
+ "itemsBeforeCollapse",
538
+ "maxItems"
531
539
  ],
532
540
  "keyPropTypes": {
533
541
  "items": "BreadcrumbItem[]",
@@ -3082,7 +3090,7 @@
3082
3090
  "slug": "segment-group",
3083
3091
  "package": "@urbicon-ui/blocks",
3084
3092
  "group": "primitives",
3085
- "description": "Inline segment control with animated sliding indicator for single-selection scenarios.\nCompact mode/view switcher with smooth animation.",
3093
+ "description": "Segment control with an animated sliding indicator for single selection; collapses to a vertical radio-style stack when its row can't fit the available width.\nCompact mode/view switcher with smooth animation.",
3086
3094
  "tags": [
3087
3095
  "navigation"
3088
3096
  ],
package/content/meta.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "6.3.6",
3
- "builtAt": "2026-06-24T17:06:02.692Z",
4
- "contentHash": "08a38fd71649"
2
+ "version": "6.3.8",
3
+ "builtAt": "2026-06-24T23:09:16.250Z",
4
+ "contentHash": "470bfbc3b1b5"
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@urbicon-ui/design-content",
3
- "version": "6.3.6",
3
+ "version": "6.3.8",
4
4
  "description": "Version-pinned bundle of Urbicon UI design knowledge — component catalog, per-component llm.txt, design-system principles + patterns, guide template and icon metadata — plus a package-relative locator. Consumed by the remote MCP server and the urbicon CLI.",
5
5
  "license": "MIT",
6
6
  "repository": {