@urbicon-ui/design-content 6.1.8 → 6.3.1
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/content/blocks/components/calendar/llm.txt +1 -1
- package/content/blocks/components/command-palette/llm.txt +1 -4
- package/content/blocks/components/composition-bar/llm.txt +1 -4
- package/content/blocks/components/empty-state/llm.txt +1 -1
- package/content/blocks/components/file-upload/llm.txt +1 -1
- package/content/blocks/components/guide/llm.txt +1 -4
- package/content/blocks/components/guide-article/llm.txt +1 -4
- package/content/blocks/components/guide-beacon/llm.txt +1 -4
- package/content/blocks/components/guide-hint/llm.txt +1 -4
- package/content/blocks/components/guide-marker/llm.txt +1 -4
- package/content/blocks/components/guide-mention/llm.txt +1 -4
- package/content/blocks/components/guide-panel/llm.txt +1 -4
- package/content/blocks/components/planner/llm.txt +1 -1
- package/content/blocks/components/sankey/llm.txt +1 -4
- package/content/blocks/components/theme-switcher/llm.txt +5 -6
- package/content/blocks/primitives/accordion/llm.txt +2 -5
- package/content/blocks/primitives/alert/llm.txt +1 -4
- package/content/blocks/primitives/avatar/llm.txt +1 -4
- package/content/blocks/primitives/badge/llm.txt +1 -4
- package/content/blocks/primitives/breadcrumb/llm.txt +1 -4
- package/content/blocks/primitives/button/llm.txt +1 -4
- package/content/blocks/primitives/button-group/llm.txt +1 -4
- package/content/blocks/primitives/card/llm.txt +1 -4
- package/content/blocks/primitives/checkbox/llm.txt +1 -4
- package/content/blocks/primitives/collapsible/llm.txt +1 -4
- package/content/blocks/primitives/combobox/llm.txt +1 -4
- package/content/blocks/primitives/dialog/llm.txt +1 -4
- package/content/blocks/primitives/drawer/llm.txt +1 -4
- package/content/blocks/primitives/input/llm.txt +1 -4
- package/content/blocks/primitives/pagination/llm.txt +1 -4
- package/content/blocks/primitives/progress/llm.txt +1 -4
- package/content/blocks/primitives/radio-group/llm.txt +1 -4
- package/content/blocks/primitives/segment-group/llm.txt +1 -4
- package/content/blocks/primitives/select/llm.txt +1 -4
- package/content/blocks/primitives/sidebar/llm.txt +1 -4
- package/content/blocks/primitives/skeleton/llm.txt +1 -4
- package/content/blocks/primitives/slider/llm.txt +1 -4
- package/content/blocks/primitives/spinner/llm.txt +1 -4
- package/content/blocks/primitives/stepper/llm.txt +1 -4
- package/content/blocks/primitives/tab/llm.txt +1 -4
- package/content/blocks/primitives/textarea/llm.txt +1 -4
- package/content/blocks/primitives/toast/llm.txt +1 -4
- package/content/blocks/primitives/toggle/llm.txt +1 -4
- package/content/blocks/primitives/toolbar/llm.txt +1 -4
- package/content/blocks/primitives/tooltip/llm.txt +1 -4
- package/content/component-catalog.json +43 -355
- package/content/design-system/principles.md +2 -1
- package/content/guides/llms-full-template.md +24 -9
- package/content/meta.json +3 -3
- package/package.json +1 -1
|
@@ -64,7 +64,7 @@ without `validRange`/`recommendedRange` behaves exactly as before.
|
|
|
64
64
|
| rangeStatusText | `SliderRangeStatusText` | no | | Custom status texts for the three zones. Defaults to the UIB i18n localization (`bt('slider.rangeStatus.*')`). |
|
|
65
65
|
| recommendedRange | `[number, number]` | no | | Recommended value range (UX recommendation, softer than `validRange`). Values inside appear green, values outside yellow (warning). Typically `recommendedRange ⊂ validRange`, but this is not enforced. |
|
|
66
66
|
| showValue | `boolean` | no | false | Show the current value next to the label. |
|
|
67
|
-
| slotClasses | `Partial<Record<
|
|
67
|
+
| slotClasses | `Partial<Record<SliderSlots, string>>` | no | | Per-slot class overrides merged with tv() styles. Slots: wrapper (root — what `class` also targets) | header | label | valueText | base (the interactive track container) | track | range | thumb | mark | boundaryTick | rangeStatus | rangeStatusIcon | message. |
|
|
68
68
|
| step | `number` | no | 1 | Snap to increments of this value. |
|
|
69
69
|
| unstyled | `boolean` | no | | Remove all default tv() classes. |
|
|
70
70
|
| validRange | `[number, number]` | no | | Valid value range (e.g. a legal limit). Values outside it style track and thumb in the `outOfValidRangeIntent` color (default: `danger`). Status changes are announced via an ARIA live region. If the range lies outside `[min, max]`, a console warning is emitted — the visible `min`/`max` are NOT shifted automatically. |
|
|
@@ -77,6 +77,3 @@ without `validRange`/`recommendedRange` behaves exactly as before.
|
|
|
77
77
|
Inherited from:
|
|
78
78
|
- Omit<SliderVariants, 'error' | 'rangeStatus'> (omit-pattern)
|
|
79
79
|
- Omit<HTMLAttributes<HTMLDivElement>, 'children' | 'class'> (omit-pattern)
|
|
80
|
-
|
|
81
|
-
### Slots (slotClasses keys)
|
|
82
|
-
`wrapper`, `header`, `label`, `valueText`, `base`, `track`, `range`, `thumb`, `mark`, `boundaryTick`, `rangeStatus`, `rangeStatusIcon`, `message`
|
|
@@ -32,7 +32,7 @@ Animated loading indicator with multiple animation styles and semantic intents.
|
|
|
32
32
|
| label | `string` | no | | Accessible label announced by screen readers. Defaults to "Loading...". |
|
|
33
33
|
| preset | `string` | no | | Apply a named preset registered via `<BlocksProvider presets={{ Spinner: {...} }}>`. 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. |
|
|
34
34
|
| size | `SpinnerVariants['size']` | no | | Physical dimensions from `xs` (16 px) to `xl` (40 px). |
|
|
35
|
-
| slotClasses | `Partial<Record<
|
|
35
|
+
| slotClasses | `Partial<Record<SpinnerSlots, string>>` | no | | Per-slot class overrides merged with (or replacing, when `unstyled`) tv() output. Slots: base | svg | svgCircle | svgPath | dots | dot | pulse | pulseCenter | pulseRing | ring | ringElement | bars | bar | content | srOnly |
|
|
36
36
|
| speed | `SpinnerVariants['speed']` | no | | Animation speed — controls `--spinner-speed` custom property. |
|
|
37
37
|
| unstyled | `boolean` | no | | Strip all default tv() classes. Combine with `slotClasses` for full control. |
|
|
38
38
|
| variant | `SpinnerVariants['variant']` | no | | Animation style. `default` is an SVG arc, `dots` bounces three dots, `pulse` radiates a sonar ping, `ring` spins cascading borders, `bars` animates vertical equalizer bars. |
|
|
@@ -41,6 +41,3 @@ Animated loading indicator with multiple animation styles and semantic intents.
|
|
|
41
41
|
Inherited from:
|
|
42
42
|
- SpinnerVariants (external)
|
|
43
43
|
- Omit<HTMLAttributes<HTMLDivElement>, 'children'> (omit-pattern)
|
|
44
|
-
|
|
45
|
-
### Slots (slotClasses keys)
|
|
46
|
-
`base`, `svg`, `svgCircle`, `svgPath`, `dots`, `dot`, `pulse`, `pulseCenter`, `pulseRing`, `ring`, `ringElement`, `bars`, `bar`, `content`, `srOnly`
|
|
@@ -47,7 +47,7 @@ clickable navigation, and per-step state overrides (error, warning).
|
|
|
47
47
|
| preset | `string` | no | | Apply a named preset registered via `<BlocksProvider presets={{ Stepper: {...} }}>`. 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. |
|
|
48
48
|
| responsive | `boolean | { breakpoint?: number }` | no | false | Container-responsive mode: when the Stepper's container is narrower than `breakpoint`, automatically switch to `orientation="vertical"` and `variant="minimal"` so the steps stay readable. - `false` (default): never auto-switch. - `true`: switch below 640 px container width. - `{ breakpoint: 480 }`: switch below 480 px. Uses `ResizeObserver` on the root element — works inside Drawers, Cards, or split layouts where viewport-based media queries miss the actual available width. |
|
|
49
49
|
| size | `'sm' | 'md' | 'lg'` | no | 'md' | Size variant that controls dimensions and spacing of the Stepper |
|
|
50
|
-
| slotClasses | `Partial<Record<
|
|
50
|
+
| slotClasses | `Partial<Record<StepperSlots, string>>` | no | | Per-slot class overrides. Slots: base | stepItem | step | indicatorColumn | indicator | labelGroup | label | description | separator | content |
|
|
51
51
|
| tier | `InteractiveTier` | no | 'commit' | Semantic radius tier propagated to every StepperStep. Default `commit` — step indicators read as identity circles. Set to `modify` (or inherit via TierContext from a wrapping `<Toolbar tier="modify">`) to render a compact soft-rectangle stepper for inline wizards. |
|
|
52
52
|
| unstyled | `boolean` | no | | Remove all default tv() classes. |
|
|
53
53
|
| variant | `'default' | 'outlined' | 'minimal'` | no | 'default' | Visual style of step indicators. |
|
|
@@ -55,6 +55,3 @@ clickable navigation, and per-step state overrides (error, warning).
|
|
|
55
55
|
Inherited from:
|
|
56
56
|
- Omit<StepperVariants, 'stepState' | 'clickable' | 'stepDisabled' | 'separatorComplete'> (omit-pattern)
|
|
57
57
|
- Omit<HTMLAttributes<HTMLOListElement>, 'children'> (omit-pattern)
|
|
58
|
-
|
|
59
|
-
### Slots (slotClasses keys)
|
|
60
|
-
`base`, `stepItem`, `step`, `indicatorColumn`, `indicator`, `labelGroup`, `label`, `description`, `separator`, `content`
|
|
@@ -60,13 +60,10 @@ Supports horizontal/vertical orientation, visual variants, and keyboard navigati
|
|
|
60
60
|
| orientation | `'horizontal' | 'vertical'` | no | 'horizontal' | Tab strip axis. Determines whether triggers stack horizontally or vertically. |
|
|
61
61
|
| panels | `Snippet` | no | | Snippet containing TabPanel components for the content area. |
|
|
62
62
|
| preset | `string` | no | | Apply a named preset registered via `<BlocksProvider presets={{ Tab: {...} }}>`. 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. |
|
|
63
|
-
| slotClasses | `Partial<Record<
|
|
63
|
+
| slotClasses | `Partial<Record<TabSlots, string>>` | no | | Per-slot class overrides merged with (or replacing when unstyled) tv() styles. Slots: base | list | trigger | icon | label | badge | panel | indicator |
|
|
64
64
|
| tabs | `Snippet` | no | | Snippet containing TabItem components for the tab strip. |
|
|
65
65
|
| tier | `InteractiveTier` | no | 'modify' | Semantic radius tier propagated to every TabItem. Default `modify` — tabs read as navigation tap surfaces. Set to `commit` (or inherit via TierContext from a wrapping `<Toolbar tier="commit">`) for full-pill tab strips in marketing/product-overview contexts. Only the `pills`, `solid`, and `enclosed` variants render a visible corner; `line` is radius-agnostic. |
|
|
66
66
|
| unstyled | `boolean` | no | | Strip all default tv() styles from the container and children. |
|
|
67
67
|
| value | `string` | no | | Controlled active tab value. Use with `bind:value` for two-way binding. When set, the component is controlled — you must handle `onValueChange` to update it. |
|
|
68
68
|
| variant | `'enclosed' | 'line' | 'pills' | 'solid'` | no | line | Controls the visual style and presentation of the Tab. Determines the component's visual treatment. Available options: enclosed, line, pills, solid. |
|
|
69
69
|
| size | `'lg' | 'md' | 'sm'` | no | md | Controls the dimensions, padding, and text size of the Tab. Affects the component's physical footprint. Available options: lg, md, sm. |
|
|
70
|
-
|
|
71
|
-
### Slots (slotClasses keys)
|
|
72
|
-
`base`, `list`, `trigger`, `panel`, `indicator`
|
|
@@ -45,7 +45,7 @@ Shares the same variant/intent/size system as Input for visual consistency.
|
|
|
45
45
|
| readonly | `boolean` | no | false | Readonly property for the Textarea component |
|
|
46
46
|
| required | `boolean` | no | false | Adds a required asterisk to the label and sets the native `required` attribute. |
|
|
47
47
|
| showCounter | `boolean` | no | | Show a live character counter. Requires `maxlength` to display remaining count. |
|
|
48
|
-
| slotClasses | `Partial<Record<
|
|
48
|
+
| slotClasses | `Partial<Record<TextareaSlots, string>>` | no | | Per-slot class overrides merged with tv() styles. Slots: wrapper (root — what `class` also targets) | base (the `<textarea>` element) | label | footer | message | counter. |
|
|
49
49
|
| unstyled | `boolean` | no | | Remove all default tv() classes. Only user-provided classes apply. |
|
|
50
50
|
| variant | `TextareaVariants['variant']` | no | 'outlined' | Visual style. - `outlined` (default) — visible border, surface-base background - `filled` — surface-interactive fill, no border - `ghost` — transparent until hover/focus - `underline` — bottom-line only, no border-box (editorial style) |
|
|
51
51
|
| intent | `'danger' | 'default' | 'success' | 'warning'` | no | default | Controls the color theme and semantic meaning of the Textarea. Affects the overall appearance and user perception. Available options: danger, default, success, warning. |
|
|
@@ -56,6 +56,3 @@ Shares the same variant/intent/size system as Input for visual consistency.
|
|
|
56
56
|
Inherited from:
|
|
57
57
|
- Omit<TextareaVariants, 'error' | 'counterState' | 'variant'> (omit-pattern)
|
|
58
58
|
- Omit<HTMLTextareaAttributes, 'size' | 'class' | 'children'> (omit-pattern)
|
|
59
|
-
|
|
60
|
-
### Slots (slotClasses keys)
|
|
61
|
-
`wrapper`, `base`, `label`, `footer`, `message`, `counter`
|
|
@@ -34,12 +34,9 @@ Place once in your root layout. Use the toaster store to trigger toasts from any
|
|
|
34
34
|
| max | `number` | no | 5 | Maximum number of toasts visible at once. Oldest are hidden first. |
|
|
35
35
|
| placement | `ToastPlacement` | no | 'bottom-right' | Screen corner where toasts stack. |
|
|
36
36
|
| preset | `string` | no | | Apply a named preset registered via `<BlocksProvider presets={{ Toaster: {...} }}>`. 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
|
-
| slotClasses | `Partial<Record<
|
|
37
|
+
| slotClasses | `Partial<Record<ToasterSlots, string>>` | no | | Per-slot class overrides merged with (or replacing, when `unstyled`) the default styles. |
|
|
38
38
|
| unstyled | `boolean` | no | | Strip all default tv classes. Use with `slotClasses` for a fully custom look. |
|
|
39
39
|
| intent | `'danger' | 'info' | 'neutral' | 'primary' | 'success' | 'warning'` | no | neutral | Controls the color theme and semantic meaning of the Toast. Affects the overall appearance and user perception. Available options: danger, info, neutral, and 3 more. |
|
|
40
40
|
|
|
41
41
|
Inherited from:
|
|
42
42
|
- Omit<HTMLAttributes<HTMLDivElement>, 'children'> (omit-pattern)
|
|
43
|
-
|
|
44
|
-
### Slots (slotClasses keys)
|
|
45
|
-
`container`, `toast`, `icon`, `content`, `title`, `description`, `dismissButton`, `progress`
|
|
@@ -46,7 +46,7 @@ Built on a hidden native input with semantic intents and Mint micro-interactions
|
|
|
46
46
|
| onCheckedChange | `(checked: boolean) => void` | no | | Fired after the checked state changes. Receives the new `checked` value. |
|
|
47
47
|
| preset | `string` | no | | Apply a named preset registered via `<BlocksProvider presets={{ Toggle: {...} }}>`. 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. |
|
|
48
48
|
| required | `boolean` | no | | Mark the native input as required for form validation. |
|
|
49
|
-
| slotClasses | `Partial<Record<
|
|
49
|
+
| slotClasses | `Partial<Record<ToggleSlots, string>>` | no | | Per-slot class overrides merged with (or replacing, when `unstyled`) the default styles. Slots: wrapper (root — what `class` also targets) | control (the `<label>` wrapping the input) | track | thumb | label | message. |
|
|
50
50
|
| tier | `InteractiveTier` | no | | Semantic radius tier. Default `commit` — a toggle declares status (on/off identity), and reads as a pill. Set to `modify` (usually via a wrapping `<Toolbar tier="modify">` propagating through TierContext) for inline-toolbar contexts where the Pill feels oversized — the track and thumb shrink to a soft-rectangle. Inherited from TierContext when omitted; falls back to `commit` outside of any tier-aware container. |
|
|
51
51
|
| unstyled | `boolean` | no | | Strip all default tailwind-variants classes. Use with `slotClasses` for a fully custom look. The track exposes `data-state` for conditional styling. |
|
|
52
52
|
| value | `string` | no | | The value submitted when checked. Defaults to `'on'`. |
|
|
@@ -57,6 +57,3 @@ Built on a hidden native input with semantic intents and Mint micro-interactions
|
|
|
57
57
|
Inherited from:
|
|
58
58
|
- Omit<ToggleVariants, 'checked'> (omit-pattern)
|
|
59
59
|
- Omit<HTMLInputAttributes, 'type' | 'size' | 'checked' | 'class' | 'children'> (omit-pattern)
|
|
60
|
-
|
|
61
|
-
### Slots (slotClasses keys)
|
|
62
|
-
`wrapper`, `control`, `track`, `thumb`, `label`, `message`
|
|
@@ -44,7 +44,7 @@ Renders with role="toolbar" and auto-sets aria-orientation.
|
|
|
44
44
|
| ...ToolbarVariants | `VariantProps` | no | | Styling variants from ToolbarVariants |
|
|
45
45
|
| class | `string` | no | | Additional CSS class applied to the root element. |
|
|
46
46
|
| preset | `string` | no | | Apply a named preset registered via `<BlocksProvider presets={{ Toolbar: {...} }}>`. 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. |
|
|
47
|
-
| slotClasses | `Partial<Record<
|
|
47
|
+
| slotClasses | `Partial<Record<ToolbarSlots, string>>` | no | | Per-slot class overrides merged with (or replacing when `unstyled`) the default classes. Slots: base |
|
|
48
48
|
| tier | `InteractiveTier` | no | 'modify' | Semantic radius tier propagated to tier-aware children (Buttons, Badges, Inputs, …). The Toolbar's own surface stays `r-structure` regardless of this prop. Default `modify` — toolbars typically hold compact, icon-only actions where pill-shaped buttons read as tags. Set to `commit` for marketing or hero toolbars with full CTAs. |
|
|
49
49
|
| unstyled | `boolean` | no | | Remove all default tv() classes. Combine with `slotClasses` to restyle from scratch. |
|
|
50
50
|
| variant | `'elevated' | 'ghost' | 'outlined' | 'quiet'` | no | quiet | Controls the visual style and presentation of the Toolbar. Determines the component's visual treatment. Available options: elevated, ghost, outlined, quiet. |
|
|
@@ -55,6 +55,3 @@ Renders with role="toolbar" and auto-sets aria-orientation.
|
|
|
55
55
|
Inherited from:
|
|
56
56
|
- ToolbarVariants (external)
|
|
57
57
|
- Omit<HTMLAttributes<HTMLDivElement>, 'children'> (omit-pattern)
|
|
58
|
-
|
|
59
|
-
### Slots (slotClasses keys)
|
|
60
|
-
`base`
|
|
@@ -40,7 +40,7 @@ Built with Floating UI for precise positioning and accessibility support.
|
|
|
40
40
|
| placement | `Placement` | no | 'top' | Where the tooltip appears relative to the trigger. Auto-flips when clipped. |
|
|
41
41
|
| preset | `string` | no | | Apply a named preset registered via `<BlocksProvider presets={{ Tooltip: {...} }}>`. 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. |
|
|
42
42
|
| showDelay | `number` | no | 200 | Milliseconds before the tooltip appears after hover/focus. Prevents accidental activation. |
|
|
43
|
-
| slotClasses | `Partial<Record<
|
|
43
|
+
| slotClasses | `Partial<Record<TooltipSlots, string>>` | no | | Per-slot class overrides merged with (or replacing, when unstyled) tv styles. |
|
|
44
44
|
| unstyled | `boolean` | no | | Remove default tv classes; only consumer classes apply. |
|
|
45
45
|
| intent | `'danger' | 'info' | 'neutral' | 'primary' | 'secondary' | 'success' | 'warning'` | no | neutral | Controls the color theme and semantic meaning of the Tooltip. Affects the overall appearance and user perception. Available options: danger, info, neutral, and 4 more. |
|
|
46
46
|
| size | `'lg' | 'md' | 'sm'` | no | md | Controls the dimensions, padding, and text size of the Tooltip. Affects the component's physical footprint. Available options: lg, md, sm. |
|
|
@@ -49,6 +49,3 @@ Built with Floating UI for precise positioning and accessibility support.
|
|
|
49
49
|
Inherited from:
|
|
50
50
|
- TooltipVariants (external)
|
|
51
51
|
- Omit<HTMLAttributes<HTMLDivElement>, 'children'> (omit-pattern)
|
|
52
|
-
|
|
53
|
-
### Slots (slotClasses keys)
|
|
54
|
-
`base`, `arrow`
|