@commercetools/nimbus-mcp 3.3.0 → 3.4.0

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.
Files changed (44) hide show
  1. package/data/docs/route-manifest.json +714 -14
  2. package/data/docs/routes/components-data-display-item-group.json +413 -0
  3. package/data/docs/routes/components-data-display-item.json +611 -0
  4. package/data/docs/routes/components-feedback-skeleton.json +481 -0
  5. package/data/docs/routes/components-feedback-skeletoncircle.json +429 -0
  6. package/data/docs/routes/components-feedback-skeletontext.json +417 -0
  7. package/data/docs/routes/components-inputs-range-slider.json +633 -0
  8. package/data/docs/routes/components-inputs-slider.json +611 -0
  9. package/data/docs/routes/components-navigation-breadcrumbs.json +565 -0
  10. package/data/docs/routes/icons.json +3 -3
  11. package/data/docs/search-index.json +1 -1
  12. package/data/docs/types/Breadcrumbs.json +12 -0
  13. package/data/docs/types/BreadcrumbsItem.json +296 -0
  14. package/data/docs/types/BreadcrumbsItemProps.json +9 -0
  15. package/data/docs/types/BreadcrumbsProps.json +9 -0
  16. package/data/docs/types/BreadcrumbsRoot.json +110 -0
  17. package/data/docs/types/ItemActions.json +27 -0
  18. package/data/docs/types/ItemContent.json +27 -0
  19. package/data/docs/types/ItemDescription.json +27 -0
  20. package/data/docs/types/ItemFooter.json +27 -0
  21. package/data/docs/types/ItemGroup.json +12 -0
  22. package/data/docs/types/ItemGroupRoot.json +27 -0
  23. package/data/docs/types/ItemGroupSeparator.json +27 -0
  24. package/data/docs/types/ItemHeader.json +27 -0
  25. package/data/docs/types/ItemMedia.json +56 -0
  26. package/data/docs/types/ItemRoot.json +239 -0
  27. package/data/docs/types/ItemTitle.json +27 -0
  28. package/data/docs/types/RangeSlider.json +337 -0
  29. package/data/docs/types/RangeSliderProps.json +9 -0
  30. package/data/docs/types/Skeleton.json +129 -0
  31. package/data/docs/types/SkeletonCircle.json +103 -0
  32. package/data/docs/types/SkeletonCircleProps.json +9 -0
  33. package/data/docs/types/SkeletonProps.json +9 -0
  34. package/data/docs/types/SkeletonText.json +62 -0
  35. package/data/docs/types/SkeletonTextProps.json +9 -0
  36. package/data/docs/types/Slider.json +337 -0
  37. package/data/docs/types/createItemsFromCsvDrop.json +4 -4
  38. package/data/docs/types/createItemsFromDirectoryDrop.json +4 -4
  39. package/data/docs/types/createItemsFromFileDrop.json +4 -4
  40. package/data/docs/types/createItemsFromImageDrop.json +4 -4
  41. package/data/docs/types/createItemsFromJsonDrop.json +4 -4
  42. package/data/docs/types/manifest.json +25 -0
  43. package/data/docs/types/useRegion.json +2 -2
  44. package/package.json +4 -4
@@ -0,0 +1,12 @@
1
+ {
2
+ "tags": {
3
+ "see": "{@link https://nimbus-documentation.vercel.app/components/navigation/breadcrumbs}",
4
+ "example": "```tsx\n<Breadcrumbs.Root aria-label=\"Breadcrumb\">\n <Breadcrumbs.Item href=\"/\">Home</Breadcrumbs.Item>\n <Breadcrumbs.Item href=\"/orders\">Orders</Breadcrumbs.Item>\n <Breadcrumbs.Item>Order #123</Breadcrumbs.Item>\n</Breadcrumbs.Root>\n```"
5
+ },
6
+ "filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
7
+ "description": "Breadcrumbs\n============================================================\nA navigation component that displays the hierarchical path to the current\npage as an ordered list of links. Built on React Aria Components'\n`Breadcrumbs`/`Breadcrumb`; the last item is treated as the current page\nautomatically (non-interactive text with `aria-current=\"page\"`).\n\nRenders proper navigation semantics (`<nav>` landmark, `<ol>`/`<li>`\nstructure, `<a>` elements, `aria-current=\"page\"`) for WCAG 2.1 AA compliant\npage navigation.",
8
+ "displayName": "Breadcrumbs",
9
+ "methods": [],
10
+ "props": {},
11
+ "supportsStyleProps": false
12
+ }
@@ -0,0 +1,296 @@
1
+ {
2
+ "tags": {
3
+ "supportsStyleProps": ""
4
+ },
5
+ "filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
6
+ "description": "# Breadcrumbs.Item\n\nAn individual breadcrumb. Renders an `<li>` (via React Aria's `Breadcrumb`)\ncontaining a navigation link (via React Aria's `Link`). The decorative\nseparator configured on `Breadcrumbs.Root` is rendered before every item\nexcept the first.\n\nWhen this is the last item in a `Breadcrumbs.Root`, React Aria marks it as the\ncurrent page automatically: it becomes non-interactive text with\n`aria-current=\"page\"` and is removed from the tab sequence. There is no\n`isCurrent` prop — currentness is derived from position.",
7
+ "displayName": "BreadcrumbsItem",
8
+ "methods": [],
9
+ "props": {
10
+ "size": {
11
+ "defaultValue": {
12
+ "value": "\"md\""
13
+ },
14
+ "description": "Size of the breadcrumb items.",
15
+ "name": "size",
16
+ "declarations": [
17
+ {
18
+ "fileName": "nimbus/packages/nimbus/src/components/breadcrumbs/breadcrumbs.types.ts",
19
+ "name": "TypeLiteral"
20
+ }
21
+ ],
22
+ "required": false,
23
+ "type": {
24
+ "name": "ConditionalValue<\"sm\" | \"md\">"
25
+ }
26
+ },
27
+ "media": {
28
+ "defaultValue": null,
29
+ "description": "",
30
+ "name": "media",
31
+ "parent": {
32
+ "fileName": "nimbus/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
33
+ "name": "AnchorHTMLAttributes"
34
+ },
35
+ "declarations": [
36
+ {
37
+ "fileName": "nimbus/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
38
+ "name": "AnchorHTMLAttributes"
39
+ }
40
+ ],
41
+ "required": false,
42
+ "type": {
43
+ "name": "string"
44
+ }
45
+ },
46
+ "unstyled": {
47
+ "defaultValue": null,
48
+ "description": "If `true`, the element will opt out of the theme styles.",
49
+ "name": "unstyled",
50
+ "parent": {
51
+ "fileName": "nimbus/node_modules/.pnpm/@chakra-ui+react@3.36.1_@emotion+react@11.14.0_@types+react@19.2.17_react@19.2.0__react_481d5ee5504b18c9383bebdcb4b66737/node_modules/@chakra-ui/react/dist/types/styled-system/factory.types.d.ts",
52
+ "name": "UnstyledProp"
53
+ },
54
+ "declarations": [
55
+ {
56
+ "fileName": "nimbus/node_modules/.pnpm/@chakra-ui+react@3.36.1_@emotion+react@11.14.0_@types+react@19.2.17_react@19.2.0__react_481d5ee5504b18c9383bebdcb4b66737/node_modules/@chakra-ui/react/dist/types/styled-system/factory.types.d.ts",
57
+ "name": "UnstyledProp"
58
+ }
59
+ ],
60
+ "required": false,
61
+ "type": {
62
+ "name": "boolean"
63
+ }
64
+ },
65
+ "type": {
66
+ "defaultValue": null,
67
+ "description": "",
68
+ "name": "type",
69
+ "parent": {
70
+ "fileName": "nimbus/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
71
+ "name": "AnchorHTMLAttributes"
72
+ },
73
+ "declarations": [
74
+ {
75
+ "fileName": "nimbus/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
76
+ "name": "AnchorHTMLAttributes"
77
+ }
78
+ ],
79
+ "required": false,
80
+ "type": {
81
+ "name": "string"
82
+ }
83
+ },
84
+ "href": {
85
+ "defaultValue": null,
86
+ "description": "The URL to navigate to when the back link is clicked",
87
+ "name": "href",
88
+ "parent": {
89
+ "fileName": "nimbus/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
90
+ "name": "AnchorHTMLAttributes"
91
+ },
92
+ "declarations": [
93
+ {
94
+ "fileName": "nimbus/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
95
+ "name": "AnchorHTMLAttributes"
96
+ },
97
+ {
98
+ "fileName": "nimbus/packages/nimbus/src/components/default-page/default-page.types.ts",
99
+ "name": "TypeLiteral"
100
+ }
101
+ ],
102
+ "required": false,
103
+ "type": {
104
+ "name": "string"
105
+ }
106
+ },
107
+ "target": {
108
+ "defaultValue": null,
109
+ "description": "",
110
+ "name": "target",
111
+ "parent": {
112
+ "fileName": "nimbus/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
113
+ "name": "AnchorHTMLAttributes"
114
+ },
115
+ "declarations": [
116
+ {
117
+ "fileName": "nimbus/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
118
+ "name": "AnchorHTMLAttributes"
119
+ }
120
+ ],
121
+ "required": false,
122
+ "type": {
123
+ "name": "HTMLAttributeAnchorTarget"
124
+ }
125
+ },
126
+ "download": {
127
+ "defaultValue": null,
128
+ "description": "",
129
+ "name": "download",
130
+ "parent": {
131
+ "fileName": "nimbus/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
132
+ "name": "AnchorHTMLAttributes"
133
+ },
134
+ "declarations": [
135
+ {
136
+ "fileName": "nimbus/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
137
+ "name": "AnchorHTMLAttributes"
138
+ }
139
+ ],
140
+ "required": false,
141
+ "type": {
142
+ "name": "any"
143
+ }
144
+ },
145
+ "hrefLang": {
146
+ "defaultValue": null,
147
+ "description": "",
148
+ "name": "hrefLang",
149
+ "parent": {
150
+ "fileName": "nimbus/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
151
+ "name": "AnchorHTMLAttributes"
152
+ },
153
+ "declarations": [
154
+ {
155
+ "fileName": "nimbus/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
156
+ "name": "AnchorHTMLAttributes"
157
+ }
158
+ ],
159
+ "required": false,
160
+ "type": {
161
+ "name": "string"
162
+ }
163
+ },
164
+ "ping": {
165
+ "defaultValue": null,
166
+ "description": "",
167
+ "name": "ping",
168
+ "parent": {
169
+ "fileName": "nimbus/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
170
+ "name": "AnchorHTMLAttributes"
171
+ },
172
+ "declarations": [
173
+ {
174
+ "fileName": "nimbus/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
175
+ "name": "AnchorHTMLAttributes"
176
+ }
177
+ ],
178
+ "required": false,
179
+ "type": {
180
+ "name": "string"
181
+ }
182
+ },
183
+ "referrerPolicy": {
184
+ "defaultValue": null,
185
+ "description": "",
186
+ "name": "referrerPolicy",
187
+ "parent": {
188
+ "fileName": "nimbus/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
189
+ "name": "AnchorHTMLAttributes"
190
+ },
191
+ "declarations": [
192
+ {
193
+ "fileName": "nimbus/node_modules/.pnpm/@types+react@19.2.17/node_modules/@types/react/index.d.ts",
194
+ "name": "AnchorHTMLAttributes"
195
+ }
196
+ ],
197
+ "required": false,
198
+ "type": {
199
+ "name": "enum",
200
+ "raw": "HTMLAttributeReferrerPolicy",
201
+ "value": [
202
+ {
203
+ "value": "\"\""
204
+ },
205
+ {
206
+ "value": "\"origin\""
207
+ },
208
+ {
209
+ "value": "\"no-referrer\""
210
+ },
211
+ {
212
+ "value": "\"no-referrer-when-downgrade\""
213
+ },
214
+ {
215
+ "value": "\"origin-when-cross-origin\""
216
+ },
217
+ {
218
+ "value": "\"same-origin\""
219
+ },
220
+ {
221
+ "value": "\"strict-origin\""
222
+ },
223
+ {
224
+ "value": "\"strict-origin-when-cross-origin\""
225
+ },
226
+ {
227
+ "value": "\"unsafe-url\""
228
+ }
229
+ ]
230
+ }
231
+ },
232
+ "id": {
233
+ "defaultValue": null,
234
+ "description": "A unique key for the breadcrumb, passed to `Breadcrumbs.Root`'s `onAction`\nhandler when this item is activated.",
235
+ "name": "id",
236
+ "declarations": [
237
+ {
238
+ "fileName": "nimbus/packages/nimbus/src/components/breadcrumbs/breadcrumbs.types.ts",
239
+ "name": "TypeLiteral"
240
+ }
241
+ ],
242
+ "required": false,
243
+ "type": {
244
+ "name": "string | number"
245
+ }
246
+ },
247
+ "isDisabled": {
248
+ "defaultValue": {
249
+ "value": "false"
250
+ },
251
+ "description": "Whether the item is disabled. Disabled items cannot be interacted with,\nare visually dimmed, and are removed from the tab sequence.",
252
+ "name": "isDisabled",
253
+ "declarations": [
254
+ {
255
+ "fileName": "nimbus/packages/nimbus/src/components/breadcrumbs/breadcrumbs.types.ts",
256
+ "name": "TypeLiteral"
257
+ }
258
+ ],
259
+ "required": false,
260
+ "type": {
261
+ "name": "boolean"
262
+ }
263
+ },
264
+ "routerOptions": {
265
+ "defaultValue": null,
266
+ "description": "Options forwarded to the client-side router for this link.",
267
+ "name": "routerOptions",
268
+ "declarations": [
269
+ {
270
+ "fileName": "nimbus/packages/nimbus/src/components/breadcrumbs/breadcrumbs.types.ts",
271
+ "name": "TypeLiteral"
272
+ }
273
+ ],
274
+ "required": false,
275
+ "type": {
276
+ "name": "any"
277
+ }
278
+ },
279
+ "ref": {
280
+ "defaultValue": null,
281
+ "description": "A ref to the underlying `<a>` element.",
282
+ "name": "ref",
283
+ "declarations": [
284
+ {
285
+ "fileName": "nimbus/packages/nimbus/src/components/breadcrumbs/breadcrumbs.types.ts",
286
+ "name": "TypeLiteral"
287
+ }
288
+ ],
289
+ "required": false,
290
+ "type": {
291
+ "name": "Ref<HTMLAnchorElement>"
292
+ }
293
+ }
294
+ },
295
+ "supportsStyleProps": true
296
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "tags": {},
3
+ "filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
4
+ "description": "Props for the Breadcrumbs.Item component.\nRenders an `<li>` containing a navigation link. The last item rendered inside\na `Breadcrumbs.Root` automatically represents the current page (non-interactive\ntext with `aria-current=\"page\"`, removed from the tab sequence) — there is no\n`isCurrent` prop.",
5
+ "displayName": "BreadcrumbsItemProps",
6
+ "methods": [],
7
+ "props": {},
8
+ "supportsStyleProps": false
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "tags": {},
3
+ "filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
4
+ "description": "Props for the Breadcrumbs.Root component.\nRenders a `<nav>` landmark containing an ordered list of breadcrumb links.\nThe last item is treated as the current page automatically.",
5
+ "displayName": "BreadcrumbsProps",
6
+ "methods": [],
7
+ "props": {},
8
+ "supportsStyleProps": false
9
+ }
@@ -0,0 +1,110 @@
1
+ {
2
+ "tags": {
3
+ "supportsStyleProps": ""
4
+ },
5
+ "filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
6
+ "description": "# Breadcrumbs.Root\n\nThe root container for the Breadcrumbs component. Renders a `<nav>` landmark\nwrapping an ordered list (`<ol>`) of breadcrumb items, built on React Aria\nComponents' `Breadcrumbs`. The last item is treated as the current page\nautomatically.\n\nAccepts either compound `Breadcrumbs.Item` children or a declarative `items`\narray. Always provide an `aria-label` (e.g. `\"Breadcrumb\"`) to identify the\nnavigation landmark.",
7
+ "displayName": "BreadcrumbsRoot",
8
+ "methods": [],
9
+ "props": {
10
+ "size": {
11
+ "defaultValue": {
12
+ "value": "\"md\""
13
+ },
14
+ "description": "Size of the breadcrumb items.",
15
+ "name": "size",
16
+ "declarations": [
17
+ {
18
+ "fileName": "nimbus/packages/nimbus/src/components/breadcrumbs/breadcrumbs.types.ts",
19
+ "name": "TypeLiteral"
20
+ }
21
+ ],
22
+ "required": false,
23
+ "type": {
24
+ "name": "ConditionalValue<\"sm\" | \"md\">"
25
+ }
26
+ },
27
+ "unstyled": {
28
+ "defaultValue": null,
29
+ "description": "If `true`, the element will opt out of the theme styles.",
30
+ "name": "unstyled",
31
+ "parent": {
32
+ "fileName": "nimbus/node_modules/.pnpm/@chakra-ui+react@3.36.1_@emotion+react@11.14.0_@types+react@19.2.17_react@19.2.0__react_481d5ee5504b18c9383bebdcb4b66737/node_modules/@chakra-ui/react/dist/types/styled-system/factory.types.d.ts",
33
+ "name": "UnstyledProp"
34
+ },
35
+ "declarations": [
36
+ {
37
+ "fileName": "nimbus/node_modules/.pnpm/@chakra-ui+react@3.36.1_@emotion+react@11.14.0_@types+react@19.2.17_react@19.2.0__react_481d5ee5504b18c9383bebdcb4b66737/node_modules/@chakra-ui/react/dist/types/styled-system/factory.types.d.ts",
38
+ "name": "UnstyledProp"
39
+ }
40
+ ],
41
+ "required": false,
42
+ "type": {
43
+ "name": "boolean"
44
+ }
45
+ },
46
+ "separator": {
47
+ "defaultValue": {
48
+ "value": "\"›\""
49
+ },
50
+ "description": "The visible separator rendered between breadcrumb items. Accepts any\nReact node (e.g. a string like \"/\" or an icon). The separator is\ndecorative and hidden from assistive technologies.",
51
+ "name": "separator",
52
+ "declarations": [
53
+ {
54
+ "fileName": "nimbus/packages/nimbus/src/components/breadcrumbs/breadcrumbs.types.ts",
55
+ "name": "TypeLiteral"
56
+ }
57
+ ],
58
+ "required": false,
59
+ "type": {
60
+ "name": "ReactNode"
61
+ }
62
+ },
63
+ "items": {
64
+ "defaultValue": null,
65
+ "description": "Data-driven list of breadcrumbs. When provided, one `Breadcrumbs.Item` is\nrendered per entry (in order) and `children` is ignored. The last entry is\nthe current page. Prefer this for trails built from data; use compound\n`Breadcrumbs.Item` children for static trails.",
66
+ "name": "items",
67
+ "declarations": [
68
+ {
69
+ "fileName": "nimbus/packages/nimbus/src/components/breadcrumbs/breadcrumbs.types.ts",
70
+ "name": "TypeLiteral"
71
+ }
72
+ ],
73
+ "required": false,
74
+ "type": {
75
+ "name": "BreadcrumbItem[]"
76
+ }
77
+ },
78
+ "onAction": {
79
+ "defaultValue": null,
80
+ "description": "Handler called with a breadcrumb's `id` when it is activated (clicked or\nvia keyboard). Useful for client-side routing.",
81
+ "name": "onAction",
82
+ "declarations": [
83
+ {
84
+ "fileName": "nimbus/packages/nimbus/src/components/breadcrumbs/breadcrumbs.types.ts",
85
+ "name": "TypeLiteral"
86
+ }
87
+ ],
88
+ "required": false,
89
+ "type": {
90
+ "name": "((key: string | number) => void)"
91
+ }
92
+ },
93
+ "ref": {
94
+ "defaultValue": null,
95
+ "description": "A ref to the root `<nav>` element.",
96
+ "name": "ref",
97
+ "declarations": [
98
+ {
99
+ "fileName": "nimbus/packages/nimbus/src/components/breadcrumbs/breadcrumbs.types.ts",
100
+ "name": "TypeLiteral"
101
+ }
102
+ ],
103
+ "required": false,
104
+ "type": {
105
+ "name": "Ref<HTMLElement>"
106
+ }
107
+ }
108
+ },
109
+ "supportsStyleProps": true
110
+ }
@@ -0,0 +1,27 @@
1
+ {
2
+ "tags": {
3
+ "supportsStyleProps": ""
4
+ },
5
+ "filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
6
+ "description": "Item.Actions - Trailing slot for interactive controls (Button, IconButton).\n\nControls placed here keep a focus order independent of a link-mode\n`Item.Root`, and — via the `data-item-actions` marker that a link-mode root\nwatches for — activate without triggering row navigation.",
7
+ "displayName": "ItemActions",
8
+ "methods": [],
9
+ "props": {
10
+ "ref": {
11
+ "defaultValue": null,
12
+ "description": "",
13
+ "name": "ref",
14
+ "declarations": [
15
+ {
16
+ "fileName": "nimbus/packages/nimbus/src/components/item/item.types.ts",
17
+ "name": "TypeLiteral"
18
+ }
19
+ ],
20
+ "required": false,
21
+ "type": {
22
+ "name": "Ref<HTMLDivElement>"
23
+ }
24
+ }
25
+ },
26
+ "supportsStyleProps": true
27
+ }
@@ -0,0 +1,27 @@
1
+ {
2
+ "tags": {
3
+ "supportsStyleProps": ""
4
+ },
5
+ "filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
6
+ "description": "Item.Content - The growing middle column that wraps Item.Title and\nItem.Description.",
7
+ "displayName": "ItemContent",
8
+ "methods": [],
9
+ "props": {
10
+ "ref": {
11
+ "defaultValue": null,
12
+ "description": "",
13
+ "name": "ref",
14
+ "declarations": [
15
+ {
16
+ "fileName": "nimbus/packages/nimbus/src/components/item/item.types.ts",
17
+ "name": "TypeLiteral"
18
+ }
19
+ ],
20
+ "required": false,
21
+ "type": {
22
+ "name": "Ref<HTMLDivElement>"
23
+ }
24
+ }
25
+ },
26
+ "supportsStyleProps": true
27
+ }
@@ -0,0 +1,27 @@
1
+ {
2
+ "tags": {
3
+ "supportsStyleProps": ""
4
+ },
5
+ "filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
6
+ "description": "Item.Description - Secondary text below the title.",
7
+ "displayName": "ItemDescription",
8
+ "methods": [],
9
+ "props": {
10
+ "ref": {
11
+ "defaultValue": null,
12
+ "description": "",
13
+ "name": "ref",
14
+ "declarations": [
15
+ {
16
+ "fileName": "nimbus/packages/nimbus/src/components/item/item.types.ts",
17
+ "name": "TypeLiteral"
18
+ }
19
+ ],
20
+ "required": false,
21
+ "type": {
22
+ "name": "Ref<HTMLDivElement>"
23
+ }
24
+ }
25
+ },
26
+ "supportsStyleProps": true
27
+ }
@@ -0,0 +1,27 @@
1
+ {
2
+ "tags": {
3
+ "supportsStyleProps": ""
4
+ },
5
+ "filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
6
+ "description": "Item.Footer - Optional full-width band rendered below the row.",
7
+ "displayName": "ItemFooter",
8
+ "methods": [],
9
+ "props": {
10
+ "ref": {
11
+ "defaultValue": null,
12
+ "description": "",
13
+ "name": "ref",
14
+ "declarations": [
15
+ {
16
+ "fileName": "nimbus/packages/nimbus/src/components/item/item.types.ts",
17
+ "name": "TypeLiteral"
18
+ }
19
+ ],
20
+ "required": false,
21
+ "type": {
22
+ "name": "Ref<HTMLDivElement>"
23
+ }
24
+ }
25
+ },
26
+ "supportsStyleProps": true
27
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "tags": {
3
+ "see": "{@link https://nimbus-documentation.vercel.app/components/data-display/item-group}",
4
+ "example": "```tsx\n<ItemGroup.Root>\n <Item.Root>…</Item.Root>\n <ItemGroup.Separator />\n <Item.Root>…</Item.Root>\n</ItemGroup.Root>\n```"
5
+ },
6
+ "filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
7
+ "description": "ItemGroup\n============================================================\nA standalone container that groups a set of `Item` rows into a vertical\nstack, with optional dividers between them. It is a **peer** of `Item` (it\nwraps `Item.Root` rows rather than nesting inside one), so it is its own\ncomponent rather than an `Item.*` part.",
8
+ "displayName": "ItemGroup",
9
+ "methods": [],
10
+ "props": {},
11
+ "supportsStyleProps": false
12
+ }
@@ -0,0 +1,27 @@
1
+ {
2
+ "tags": {
3
+ "supportsStyleProps": ""
4
+ },
5
+ "filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
6
+ "description": "ItemGroup.Root - A container that visually groups a set of `Item` rows into a\nvertical stack. It is a parent of `Item.Root` (not a child), so it lives in\nits own component rather than as an `Item.*` part and does not share the\nrow's styling context.\n\nExposes the grouping to assistive technology with `role=\"group\"` rather than\n`role=\"list\"`: a list role would require every child to be a `listitem` and\nforbid separator children, which free composition can't guarantee, whereas\n`group` signals that the rows belong together without constraining what they\nare. Give the group an accessible name with `aria-label`/`aria-labelledby`\nwhen the grouping isn't obvious from surrounding context — both pass\nstraight through. The role is an overridable default; pass your own `role`\nto replace it.",
7
+ "displayName": "ItemGroupRoot",
8
+ "methods": [],
9
+ "props": {
10
+ "ref": {
11
+ "defaultValue": null,
12
+ "description": "",
13
+ "name": "ref",
14
+ "declarations": [
15
+ {
16
+ "fileName": "nimbus/packages/nimbus/src/components/item-group/item-group.types.ts",
17
+ "name": "TypeLiteral"
18
+ }
19
+ ],
20
+ "required": false,
21
+ "type": {
22
+ "name": "Ref<HTMLDivElement>"
23
+ }
24
+ }
25
+ },
26
+ "supportsStyleProps": true
27
+ }
@@ -0,0 +1,27 @@
1
+ {
2
+ "tags": {
3
+ "supportsStyleProps": ""
4
+ },
5
+ "filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
6
+ "description": "ItemGroup.Separator - A horizontal divider between rows in an\n`ItemGroup.Root`. Exposes `role=\"separator\"` and is not a focus stop.",
7
+ "displayName": "ItemGroupSeparator",
8
+ "methods": [],
9
+ "props": {
10
+ "ref": {
11
+ "defaultValue": null,
12
+ "description": "",
13
+ "name": "ref",
14
+ "declarations": [
15
+ {
16
+ "fileName": "nimbus/packages/nimbus/src/components/item-group/item-group.types.ts",
17
+ "name": "TypeLiteral"
18
+ }
19
+ ],
20
+ "required": false,
21
+ "type": {
22
+ "name": "Ref<HTMLDivElement>"
23
+ }
24
+ }
25
+ },
26
+ "supportsStyleProps": true
27
+ }
@@ -0,0 +1,27 @@
1
+ {
2
+ "tags": {
3
+ "supportsStyleProps": ""
4
+ },
5
+ "filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
6
+ "description": "Item.Header - Optional full-width band rendered above the row.",
7
+ "displayName": "ItemHeader",
8
+ "methods": [],
9
+ "props": {
10
+ "ref": {
11
+ "defaultValue": null,
12
+ "description": "",
13
+ "name": "ref",
14
+ "declarations": [
15
+ {
16
+ "fileName": "nimbus/packages/nimbus/src/components/item/item.types.ts",
17
+ "name": "TypeLiteral"
18
+ }
19
+ ],
20
+ "required": false,
21
+ "type": {
22
+ "name": "Ref<HTMLDivElement>"
23
+ }
24
+ }
25
+ },
26
+ "supportsStyleProps": true
27
+ }