@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,56 @@
1
+ {
2
+ "tags": {
3
+ "supportsStyleProps": ""
4
+ },
5
+ "filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
6
+ "description": "Item.Media - Fixed, non-shrinking leading slot for an icon, avatar, or image.\n\n`variant` (`default | icon | image`) sizes and shapes the media independently\nof `Item.Root`'s `variant`; it is applied via a `data-variant` attribute that\nthe recipe's media slot targets.\n\nMedia is presentation only — it injects no accessible name of its own. Pass a\ndecorative icon (hidden by its own `aria-hidden`) or supply an explicit name\non the child when the media is meaningful.",
7
+ "displayName": "ItemMedia",
8
+ "methods": [],
9
+ "props": {
10
+ "variant": {
11
+ "defaultValue": {
12
+ "value": "\"default\""
13
+ },
14
+ "description": "How the leading media is sized/shaped. Independent of `Item.Root`'s\n`variant`; applied via a `data-variant` attribute on the media slot.",
15
+ "name": "variant",
16
+ "declarations": [
17
+ {
18
+ "fileName": "nimbus/packages/nimbus/src/components/item/item.types.ts",
19
+ "name": "TypeLiteral"
20
+ }
21
+ ],
22
+ "required": false,
23
+ "type": {
24
+ "name": "enum",
25
+ "raw": "ItemMediaVariant",
26
+ "value": [
27
+ {
28
+ "value": "\"image\""
29
+ },
30
+ {
31
+ "value": "\"icon\""
32
+ },
33
+ {
34
+ "value": "\"default\""
35
+ }
36
+ ]
37
+ }
38
+ },
39
+ "ref": {
40
+ "defaultValue": null,
41
+ "description": "",
42
+ "name": "ref",
43
+ "declarations": [
44
+ {
45
+ "fileName": "nimbus/packages/nimbus/src/components/item/item.types.ts",
46
+ "name": "TypeLiteral"
47
+ }
48
+ ],
49
+ "required": false,
50
+ "type": {
51
+ "name": "Ref<HTMLDivElement>"
52
+ }
53
+ }
54
+ },
55
+ "supportsStyleProps": true
56
+ }
@@ -0,0 +1,239 @@
1
+ {
2
+ "tags": {
3
+ "supportsStyleProps": ""
4
+ },
5
+ "filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
6
+ "description": "Item.Root - The row container and styling-context provider for all Item\nparts.\n\nPresentational by default (`<div>`). When `href` is provided it upgrades to\nan accessible link (`<a>`) via `useLink`. There is intentionally no\nbutton/pressable-row mode — row actions belong in `Item.Actions` as nested\n`Button`/`IconButton` controls, which keep an independent focus order.",
7
+ "displayName": "ItemRoot",
8
+ "methods": [],
9
+ "props": {
10
+ "size": {
11
+ "defaultValue": null,
12
+ "description": "Controls padding and gap density.",
13
+ "name": "size",
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": "ConditionalValue<\"sm\" | \"md\" | \"xs\">"
23
+ }
24
+ },
25
+ "variant": {
26
+ "defaultValue": null,
27
+ "description": "Controls visual treatment (border / subtle surface).",
28
+ "name": "variant",
29
+ "declarations": [
30
+ {
31
+ "fileName": "nimbus/packages/nimbus/src/components/item/item.types.ts",
32
+ "name": "TypeLiteral"
33
+ }
34
+ ],
35
+ "required": false,
36
+ "type": {
37
+ "name": "ConditionalValue<\"outline\" | \"subtle\" | \"plain\">"
38
+ }
39
+ },
40
+ "unstyled": {
41
+ "defaultValue": null,
42
+ "description": "If `true`, the element will opt out of the theme styles.",
43
+ "name": "unstyled",
44
+ "parent": {
45
+ "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",
46
+ "name": "UnstyledProp"
47
+ },
48
+ "declarations": [
49
+ {
50
+ "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",
51
+ "name": "UnstyledProp"
52
+ }
53
+ ],
54
+ "required": false,
55
+ "type": {
56
+ "name": "boolean"
57
+ }
58
+ },
59
+ "onPress": {
60
+ "defaultValue": null,
61
+ "description": "Handler that is called when the press is released over the target.",
62
+ "name": "onPress",
63
+ "parent": {
64
+ "fileName": "nimbus/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.0/node_modules/@react-types/shared/src/events.d.ts",
65
+ "name": "PressEvents"
66
+ },
67
+ "declarations": [
68
+ {
69
+ "fileName": "nimbus/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.0/node_modules/@react-types/shared/src/events.d.ts",
70
+ "name": "PressEvents"
71
+ }
72
+ ],
73
+ "required": false,
74
+ "type": {
75
+ "name": "((e: PressEvent) => void)"
76
+ }
77
+ },
78
+ "href": {
79
+ "defaultValue": null,
80
+ "description": "A URL to link to. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#href).",
81
+ "name": "href",
82
+ "parent": {
83
+ "fileName": "nimbus/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.0/node_modules/@react-types/shared/src/dom.d.ts",
84
+ "name": "LinkDOMProps"
85
+ },
86
+ "declarations": [
87
+ {
88
+ "fileName": "nimbus/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.0/node_modules/@react-types/shared/src/dom.d.ts",
89
+ "name": "LinkDOMProps"
90
+ }
91
+ ],
92
+ "required": false,
93
+ "type": {
94
+ "name": "string"
95
+ }
96
+ },
97
+ "target": {
98
+ "defaultValue": null,
99
+ "description": "The target window for the link. See\n[MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#target).",
100
+ "name": "target",
101
+ "parent": {
102
+ "fileName": "nimbus/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.0/node_modules/@react-types/shared/src/dom.d.ts",
103
+ "name": "LinkDOMProps"
104
+ },
105
+ "declarations": [
106
+ {
107
+ "fileName": "nimbus/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.0/node_modules/@react-types/shared/src/dom.d.ts",
108
+ "name": "LinkDOMProps"
109
+ }
110
+ ],
111
+ "required": false,
112
+ "type": {
113
+ "name": "HTMLAttributeAnchorTarget"
114
+ }
115
+ },
116
+ "download": {
117
+ "defaultValue": null,
118
+ "description": "Causes the browser to download the linked URL. A string may be provided to suggest a file name.\nSee [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#download).",
119
+ "name": "download",
120
+ "parent": {
121
+ "fileName": "nimbus/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.0/node_modules/@react-types/shared/src/dom.d.ts",
122
+ "name": "LinkDOMProps"
123
+ },
124
+ "declarations": [
125
+ {
126
+ "fileName": "nimbus/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.0/node_modules/@react-types/shared/src/dom.d.ts",
127
+ "name": "LinkDOMProps"
128
+ }
129
+ ],
130
+ "required": false,
131
+ "type": {
132
+ "name": "string | boolean"
133
+ }
134
+ },
135
+ "ping": {
136
+ "defaultValue": null,
137
+ "description": "A space-separated list of URLs to ping when the link is followed. See\n[MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#ping).",
138
+ "name": "ping",
139
+ "parent": {
140
+ "fileName": "nimbus/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.0/node_modules/@react-types/shared/src/dom.d.ts",
141
+ "name": "LinkDOMProps"
142
+ },
143
+ "declarations": [
144
+ {
145
+ "fileName": "nimbus/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.0/node_modules/@react-types/shared/src/dom.d.ts",
146
+ "name": "LinkDOMProps"
147
+ }
148
+ ],
149
+ "required": false,
150
+ "type": {
151
+ "name": "string"
152
+ }
153
+ },
154
+ "referrerPolicy": {
155
+ "defaultValue": null,
156
+ "description": "How much of the referrer to send when following the link. See\n[MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#referrerpolicy).",
157
+ "name": "referrerPolicy",
158
+ "parent": {
159
+ "fileName": "nimbus/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.0/node_modules/@react-types/shared/src/dom.d.ts",
160
+ "name": "LinkDOMProps"
161
+ },
162
+ "declarations": [
163
+ {
164
+ "fileName": "nimbus/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.0/node_modules/@react-types/shared/src/dom.d.ts",
165
+ "name": "LinkDOMProps"
166
+ }
167
+ ],
168
+ "required": false,
169
+ "type": {
170
+ "name": "enum",
171
+ "raw": "HTMLAttributeReferrerPolicy",
172
+ "value": [
173
+ {
174
+ "value": "\"\""
175
+ },
176
+ {
177
+ "value": "\"origin\""
178
+ },
179
+ {
180
+ "value": "\"no-referrer\""
181
+ },
182
+ {
183
+ "value": "\"no-referrer-when-downgrade\""
184
+ },
185
+ {
186
+ "value": "\"origin-when-cross-origin\""
187
+ },
188
+ {
189
+ "value": "\"same-origin\""
190
+ },
191
+ {
192
+ "value": "\"strict-origin\""
193
+ },
194
+ {
195
+ "value": "\"strict-origin-when-cross-origin\""
196
+ },
197
+ {
198
+ "value": "\"unsafe-url\""
199
+ }
200
+ ]
201
+ }
202
+ },
203
+ "routerOptions": {
204
+ "defaultValue": null,
205
+ "description": "Options for the configured client side router.",
206
+ "name": "routerOptions",
207
+ "parent": {
208
+ "fileName": "nimbus/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.0/node_modules/@react-types/shared/src/dom.d.ts",
209
+ "name": "LinkDOMProps"
210
+ },
211
+ "declarations": [
212
+ {
213
+ "fileName": "nimbus/node_modules/.pnpm/@react-types+shared@3.36.0_react@19.2.0/node_modules/@react-types/shared/src/dom.d.ts",
214
+ "name": "LinkDOMProps"
215
+ }
216
+ ],
217
+ "required": false,
218
+ "type": {
219
+ "name": "undefined"
220
+ }
221
+ },
222
+ "ref": {
223
+ "defaultValue": null,
224
+ "description": "Ref to the root element. `Item.Root` renders a `<div>` by default and an\n`<a>` in link mode, so the ref is typed to the default element; in link\nmode it resolves to the underlying `HTMLAnchorElement` at runtime.",
225
+ "name": "ref",
226
+ "declarations": [
227
+ {
228
+ "fileName": "nimbus/packages/nimbus/src/components/item/item.types.ts",
229
+ "name": "TypeLiteral"
230
+ }
231
+ ],
232
+ "required": false,
233
+ "type": {
234
+ "name": "Ref<HTMLDivElement>"
235
+ }
236
+ }
237
+ },
238
+ "supportsStyleProps": true
239
+ }
@@ -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.Title - The primary label of the row.",
7
+ "displayName": "ItemTitle",
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,337 @@
1
+ {
2
+ "tags": {},
3
+ "filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
4
+ "description": "# RangeSlider\n\nA two-thumb slider for selecting a `[min, max]` numeric range within bounds.\nWraps React Aria's Slider with two thumbs; the thumbs cannot cross. Each\nthumb's current value is shown in its own tooltip while it's hovered,\nfocused, or dragged.\n\nEach thumb needs its own accessible name — provide `thumbLabels` (e.g.\n`[\"Minimum price\", \"Maximum price\"]`); when omitted, the thumbs fall back\nto localized \"Minimum\" / \"Maximum\" labels rather than being left\nanonymous. The control as a whole still needs an accessible name of its\nown too: provide an `aria-label` (or use inside `FormField`), same as\n`Slider`.",
5
+ "displayName": "RangeSlider",
6
+ "methods": [],
7
+ "props": {
8
+ "size": {
9
+ "defaultValue": {
10
+ "value": "\"md\""
11
+ },
12
+ "description": "",
13
+ "name": "size",
14
+ "parent": {
15
+ "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/generated/recipes.gen.d.ts",
16
+ "name": "NimbusCodeVariant"
17
+ },
18
+ "declarations": [
19
+ {
20
+ "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/generated/recipes.gen.d.ts",
21
+ "name": "NimbusCodeVariant"
22
+ }
23
+ ],
24
+ "required": false,
25
+ "type": {
26
+ "name": "ConditionalValue<\"sm\" | \"md\" | \"lg\" | \"xs\">"
27
+ }
28
+ },
29
+ "variant": {
30
+ "defaultValue": {
31
+ "value": "\"solid\""
32
+ },
33
+ "description": "",
34
+ "name": "variant",
35
+ "parent": {
36
+ "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/generated/recipes.gen.d.ts",
37
+ "name": "NimbusCodeVariant"
38
+ },
39
+ "declarations": [
40
+ {
41
+ "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/generated/recipes.gen.d.ts",
42
+ "name": "NimbusCodeVariant"
43
+ }
44
+ ],
45
+ "required": false,
46
+ "type": {
47
+ "name": "ConditionalValue<\"outline\" | \"solid\" | \"subtle\" | \"plain\" | \"surface\">"
48
+ }
49
+ },
50
+ "step": {
51
+ "defaultValue": {
52
+ "value": "1"
53
+ },
54
+ "description": "The slider's step value.",
55
+ "name": "step",
56
+ "parent": {
57
+ "fileName": "nimbus/node_modules/.pnpm/react-stately@3.48.0_react@19.2.0/node_modules/react-stately/dist/types/src/slider/useSliderState.d.ts",
58
+ "name": "SliderProps"
59
+ },
60
+ "declarations": [
61
+ {
62
+ "fileName": "nimbus/node_modules/.pnpm/react-stately@3.48.0_react@19.2.0/node_modules/react-stately/dist/types/src/slider/useSliderState.d.ts",
63
+ "name": "SliderProps"
64
+ }
65
+ ],
66
+ "required": false,
67
+ "type": {
68
+ "name": "number"
69
+ }
70
+ },
71
+ "isDisabled": {
72
+ "defaultValue": null,
73
+ "description": "Whether the whole Slider is disabled.",
74
+ "name": "isDisabled",
75
+ "parent": {
76
+ "fileName": "nimbus/node_modules/.pnpm/react-stately@3.48.0_react@19.2.0/node_modules/react-stately/dist/types/src/slider/useSliderState.d.ts",
77
+ "name": "SliderProps"
78
+ },
79
+ "declarations": [
80
+ {
81
+ "fileName": "nimbus/node_modules/.pnpm/react-stately@3.48.0_react@19.2.0/node_modules/react-stately/dist/types/src/slider/useSliderState.d.ts",
82
+ "name": "SliderProps"
83
+ }
84
+ ],
85
+ "required": false,
86
+ "type": {
87
+ "name": "boolean"
88
+ }
89
+ },
90
+ "render": {
91
+ "defaultValue": null,
92
+ "description": "Overrides the default DOM element with a custom render function.\nThis allows rendering existing components with built-in styles and behaviors\nsuch as router links, animation libraries, and pre-styled components.\n\nRequirements:\n\n- You must render the expected element type (e.g. if `<button>` is expected, you cannot render an\n `<a>`).\n- Only a single root DOM element can be rendered (no fragments).\n- You must pass through props and ref to the underlying DOM element, merging with your own prop\n as appropriate.",
93
+ "name": "render",
94
+ "parent": {
95
+ "fileName": "nimbus/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.0_react@19.2.0__react@19.2.0/node_modules/react-aria-components/dist/types/src/utils.d.ts",
96
+ "name": "DOMRenderProps"
97
+ },
98
+ "declarations": [
99
+ {
100
+ "fileName": "nimbus/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.0_react@19.2.0__react@19.2.0/node_modules/react-aria-components/dist/types/src/utils.d.ts",
101
+ "name": "DOMRenderProps"
102
+ }
103
+ ],
104
+ "required": false,
105
+ "type": {
106
+ "name": "DOMRenderFunction<\"div\", PopoverRenderProps>"
107
+ }
108
+ },
109
+ "orientation": {
110
+ "defaultValue": {
111
+ "value": "'horizontal'"
112
+ },
113
+ "description": "The orientation of the Slider.",
114
+ "name": "orientation",
115
+ "parent": {
116
+ "fileName": "nimbus/node_modules/.pnpm/react-stately@3.48.0_react@19.2.0/node_modules/react-stately/dist/types/src/slider/useSliderState.d.ts",
117
+ "name": "SliderProps"
118
+ },
119
+ "declarations": [
120
+ {
121
+ "fileName": "nimbus/node_modules/.pnpm/react-stately@3.48.0_react@19.2.0/node_modules/react-stately/dist/types/src/slider/useSliderState.d.ts",
122
+ "name": "SliderProps"
123
+ }
124
+ ],
125
+ "required": false,
126
+ "type": {
127
+ "name": "enum",
128
+ "raw": "Orientation",
129
+ "value": [
130
+ {
131
+ "value": "\"horizontal\""
132
+ },
133
+ {
134
+ "value": "\"vertical\""
135
+ }
136
+ ]
137
+ }
138
+ },
139
+ "formatOptions": {
140
+ "defaultValue": null,
141
+ "description": "The display format of the value label.",
142
+ "name": "formatOptions",
143
+ "parent": {
144
+ "fileName": "nimbus/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.0_react@19.2.0__react@19.2.0/node_modules/react-aria-components/dist/types/src/Slider.d.ts",
145
+ "name": "SliderProps"
146
+ },
147
+ "declarations": [
148
+ {
149
+ "fileName": "nimbus/node_modules/.pnpm/react-aria-components@1.19.0_react-dom@19.2.0_react@19.2.0__react@19.2.0/node_modules/react-aria-components/dist/types/src/Slider.d.ts",
150
+ "name": "SliderProps"
151
+ }
152
+ ],
153
+ "required": false,
154
+ "type": {
155
+ "name": "NumberFormatOptions"
156
+ }
157
+ },
158
+ "minValue": {
159
+ "defaultValue": {
160
+ "value": "0"
161
+ },
162
+ "description": "The slider's minimum value.",
163
+ "name": "minValue",
164
+ "parent": {
165
+ "fileName": "nimbus/node_modules/.pnpm/react-stately@3.48.0_react@19.2.0/node_modules/react-stately/dist/types/src/slider/useSliderState.d.ts",
166
+ "name": "SliderProps"
167
+ },
168
+ "declarations": [
169
+ {
170
+ "fileName": "nimbus/node_modules/.pnpm/react-stately@3.48.0_react@19.2.0/node_modules/react-stately/dist/types/src/slider/useSliderState.d.ts",
171
+ "name": "SliderProps"
172
+ }
173
+ ],
174
+ "required": false,
175
+ "type": {
176
+ "name": "number"
177
+ }
178
+ },
179
+ "maxValue": {
180
+ "defaultValue": {
181
+ "value": "100"
182
+ },
183
+ "description": "The slider's maximum value.",
184
+ "name": "maxValue",
185
+ "parent": {
186
+ "fileName": "nimbus/node_modules/.pnpm/react-stately@3.48.0_react@19.2.0/node_modules/react-stately/dist/types/src/slider/useSliderState.d.ts",
187
+ "name": "SliderProps"
188
+ },
189
+ "declarations": [
190
+ {
191
+ "fileName": "nimbus/node_modules/.pnpm/react-stately@3.48.0_react@19.2.0/node_modules/react-stately/dist/types/src/slider/useSliderState.d.ts",
192
+ "name": "SliderProps"
193
+ }
194
+ ],
195
+ "required": false,
196
+ "type": {
197
+ "name": "number"
198
+ }
199
+ },
200
+ "thumbLabels": {
201
+ "defaultValue": null,
202
+ "description": "aria-labels for each thumb, indexed by thumb position.",
203
+ "name": "thumbLabels",
204
+ "declarations": [
205
+ {
206
+ "fileName": "nimbus/packages/nimbus/src/components/slider/slider.types.ts",
207
+ "name": "TypeLiteral"
208
+ }
209
+ ],
210
+ "required": false,
211
+ "type": {
212
+ "name": "string[]"
213
+ }
214
+ },
215
+ "showTicks": {
216
+ "defaultValue": null,
217
+ "description": "Render tick marks along the track.",
218
+ "name": "showTicks",
219
+ "declarations": [
220
+ {
221
+ "fileName": "nimbus/packages/nimbus/src/components/slider/slider.types.ts",
222
+ "name": "TypeLiteral"
223
+ }
224
+ ],
225
+ "required": false,
226
+ "type": {
227
+ "name": "boolean"
228
+ }
229
+ },
230
+ "tickStep": {
231
+ "defaultValue": null,
232
+ "description": "Interval between ticks; defaults to `step` when `showTicks` is set. A tick\nis always placed at `maxValue`, so when `tickStep` does not divide the\nrange evenly the final interval before `maxValue` is shorter than\n`tickStep`.",
233
+ "name": "tickStep",
234
+ "declarations": [
235
+ {
236
+ "fileName": "nimbus/packages/nimbus/src/components/slider/slider.types.ts",
237
+ "name": "TypeLiteral"
238
+ }
239
+ ],
240
+ "required": false,
241
+ "type": {
242
+ "name": "number"
243
+ }
244
+ },
245
+ "isInvalid": {
246
+ "defaultValue": null,
247
+ "description": "Marks the slider as invalid for styling purposes (surfaced as\n`data-invalid` on the root element). React Aria's `Slider` has no\nnative validation state, so this is a Nimbus-only prop that is\nintentionally never forwarded to the underlying `RaSlider` — it\nexists so `FormField.Input` can clone its React-Aria-named\n`isInvalid` prop onto the control (see `form-field.root.tsx`).",
248
+ "name": "isInvalid",
249
+ "declarations": [
250
+ {
251
+ "fileName": "nimbus/packages/nimbus/src/components/slider/slider.types.ts",
252
+ "name": "TypeLiteral"
253
+ }
254
+ ],
255
+ "required": false,
256
+ "type": {
257
+ "name": "boolean"
258
+ }
259
+ },
260
+ "ref": {
261
+ "defaultValue": null,
262
+ "description": "Forwarded to the root element.",
263
+ "name": "ref",
264
+ "declarations": [
265
+ {
266
+ "fileName": "nimbus/packages/nimbus/src/components/slider/slider.types.ts",
267
+ "name": "TypeLiteral"
268
+ }
269
+ ],
270
+ "required": false,
271
+ "type": {
272
+ "name": "Ref<HTMLDivElement>"
273
+ }
274
+ },
275
+ "value": {
276
+ "defaultValue": null,
277
+ "description": "",
278
+ "name": "value",
279
+ "declarations": [
280
+ {
281
+ "fileName": "nimbus/packages/nimbus/src/components/slider/derivatives/range-slider/range-slider.types.ts",
282
+ "name": "TypeLiteral"
283
+ }
284
+ ],
285
+ "required": false,
286
+ "type": {
287
+ "name": "[number, number]"
288
+ }
289
+ },
290
+ "defaultValue": {
291
+ "defaultValue": null,
292
+ "description": "",
293
+ "name": "defaultValue",
294
+ "declarations": [
295
+ {
296
+ "fileName": "nimbus/packages/nimbus/src/components/slider/derivatives/range-slider/range-slider.types.ts",
297
+ "name": "TypeLiteral"
298
+ }
299
+ ],
300
+ "required": false,
301
+ "type": {
302
+ "name": "[number, number]"
303
+ }
304
+ },
305
+ "onChange": {
306
+ "defaultValue": null,
307
+ "description": "",
308
+ "name": "onChange",
309
+ "declarations": [
310
+ {
311
+ "fileName": "nimbus/packages/nimbus/src/components/slider/derivatives/range-slider/range-slider.types.ts",
312
+ "name": "TypeLiteral"
313
+ }
314
+ ],
315
+ "required": false,
316
+ "type": {
317
+ "name": "((value: [number, number]) => void)"
318
+ }
319
+ },
320
+ "onChangeEnd": {
321
+ "defaultValue": null,
322
+ "description": "",
323
+ "name": "onChangeEnd",
324
+ "declarations": [
325
+ {
326
+ "fileName": "nimbus/packages/nimbus/src/components/slider/derivatives/range-slider/range-slider.types.ts",
327
+ "name": "TypeLiteral"
328
+ }
329
+ ],
330
+ "required": false,
331
+ "type": {
332
+ "name": "((value: [number, number]) => void)"
333
+ }
334
+ }
335
+ },
336
+ "supportsStyleProps": false
337
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "tags": {},
3
+ "filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
4
+ "description": "Props for the `RangeSlider` component — a two-thumb slider selecting a\n`[min, max]` numeric range. Shares the whole prop surface of `Slider` (via\n{@link SliderSharedProps}) but specializes `value`/`defaultValue`/`onChange`/\n`onChangeEnd` to operate on a `[number, number]` tuple.",
5
+ "displayName": "RangeSliderProps",
6
+ "methods": [],
7
+ "props": {},
8
+ "supportsStyleProps": false
9
+ }