@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.
- package/data/docs/route-manifest.json +714 -14
- package/data/docs/routes/components-data-display-item-group.json +413 -0
- package/data/docs/routes/components-data-display-item.json +611 -0
- package/data/docs/routes/components-feedback-skeleton.json +481 -0
- package/data/docs/routes/components-feedback-skeletoncircle.json +429 -0
- package/data/docs/routes/components-feedback-skeletontext.json +417 -0
- package/data/docs/routes/components-inputs-range-slider.json +633 -0
- package/data/docs/routes/components-inputs-slider.json +611 -0
- package/data/docs/routes/components-navigation-breadcrumbs.json +565 -0
- package/data/docs/routes/icons.json +3 -3
- package/data/docs/search-index.json +1 -1
- package/data/docs/types/Breadcrumbs.json +12 -0
- package/data/docs/types/BreadcrumbsItem.json +296 -0
- package/data/docs/types/BreadcrumbsItemProps.json +9 -0
- package/data/docs/types/BreadcrumbsProps.json +9 -0
- package/data/docs/types/BreadcrumbsRoot.json +110 -0
- package/data/docs/types/ItemActions.json +27 -0
- package/data/docs/types/ItemContent.json +27 -0
- package/data/docs/types/ItemDescription.json +27 -0
- package/data/docs/types/ItemFooter.json +27 -0
- package/data/docs/types/ItemGroup.json +12 -0
- package/data/docs/types/ItemGroupRoot.json +27 -0
- package/data/docs/types/ItemGroupSeparator.json +27 -0
- package/data/docs/types/ItemHeader.json +27 -0
- package/data/docs/types/ItemMedia.json +56 -0
- package/data/docs/types/ItemRoot.json +239 -0
- package/data/docs/types/ItemTitle.json +27 -0
- package/data/docs/types/RangeSlider.json +337 -0
- package/data/docs/types/RangeSliderProps.json +9 -0
- package/data/docs/types/Skeleton.json +129 -0
- package/data/docs/types/SkeletonCircle.json +103 -0
- package/data/docs/types/SkeletonCircleProps.json +9 -0
- package/data/docs/types/SkeletonProps.json +9 -0
- package/data/docs/types/SkeletonText.json +62 -0
- package/data/docs/types/SkeletonTextProps.json +9 -0
- package/data/docs/types/Slider.json +337 -0
- package/data/docs/types/createItemsFromCsvDrop.json +4 -4
- package/data/docs/types/createItemsFromDirectoryDrop.json +4 -4
- package/data/docs/types/createItemsFromFileDrop.json +4 -4
- package/data/docs/types/createItemsFromImageDrop.json +4 -4
- package/data/docs/types/createItemsFromJsonDrop.json +4 -4
- package/data/docs/types/manifest.json +25 -0
- package/data/docs/types/useRegion.json +2 -2
- package/package.json +4 -4
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tags": {
|
|
3
|
+
"see": "{@link https://nimbus-documentation.vercel.app/components/feedback/skeleton}",
|
|
4
|
+
"supportsStyleProps": ""
|
|
5
|
+
},
|
|
6
|
+
"filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
|
|
7
|
+
"description": "# Skeleton\n\nA loading placeholder that holds space for content while it loads.\nRenders as a muted, optionally animated shape to reduce layout shift.\nDecorative by default (`aria-hidden=\"true\"`); reduced motion is respected.\n\nTwo derivatives are built on top of this base and live under `derivatives/`:\n`SkeletonText` (a paragraph of lines) and `SkeletonCircle` (an avatar-sized\ncircle).",
|
|
8
|
+
"displayName": "Skeleton",
|
|
9
|
+
"methods": [],
|
|
10
|
+
"props": {
|
|
11
|
+
"size": {
|
|
12
|
+
"defaultValue": null,
|
|
13
|
+
"description": "Named square size, aligned with the Avatar size scale\n(`2xs` = 24px, `xs` = 32px, `md` = 40px), applied as equal width and height.\nOpt-in with no default — leave unset and size the placeholder with\n`width`/`height`/`boxSize` instead. `SkeletonCircle` reuses this to size its\ncircle.",
|
|
14
|
+
"name": "size",
|
|
15
|
+
"declarations": [
|
|
16
|
+
{
|
|
17
|
+
"fileName": "nimbus/packages/nimbus/src/components/skeleton/skeleton.types.ts",
|
|
18
|
+
"name": "TypeLiteral"
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"required": false,
|
|
22
|
+
"type": {
|
|
23
|
+
"name": "enum",
|
|
24
|
+
"raw": "\"md\" | \"2xs\" | \"xs\"",
|
|
25
|
+
"value": [
|
|
26
|
+
{
|
|
27
|
+
"value": "\"md\""
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"value": "\"2xs\""
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"value": "\"xs\""
|
|
34
|
+
}
|
|
35
|
+
]
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"animation": {
|
|
39
|
+
"defaultValue": {
|
|
40
|
+
"value": "\"pulse\""
|
|
41
|
+
},
|
|
42
|
+
"description": "Animation variant of the skeleton placeholder.\n- pulse: opacity oscillation (default)\n- wave: gradient shimmer sweep via ::after pseudo-element\n- none: no animation",
|
|
43
|
+
"name": "animation",
|
|
44
|
+
"declarations": [
|
|
45
|
+
{
|
|
46
|
+
"fileName": "nimbus/packages/nimbus/src/components/skeleton/skeleton.types.ts",
|
|
47
|
+
"name": "TypeLiteral"
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"required": false,
|
|
51
|
+
"type": {
|
|
52
|
+
"name": "enum",
|
|
53
|
+
"raw": "\"none\" | \"pulse\" | \"wave\"",
|
|
54
|
+
"value": [
|
|
55
|
+
{
|
|
56
|
+
"value": "\"none\""
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"value": "\"pulse\""
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"value": "\"wave\""
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"unstyled": {
|
|
68
|
+
"defaultValue": null,
|
|
69
|
+
"description": "If `true`, the element will opt out of the theme styles.",
|
|
70
|
+
"name": "unstyled",
|
|
71
|
+
"parent": {
|
|
72
|
+
"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",
|
|
73
|
+
"name": "UnstyledProp"
|
|
74
|
+
},
|
|
75
|
+
"declarations": [
|
|
76
|
+
{
|
|
77
|
+
"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",
|
|
78
|
+
"name": "UnstyledProp"
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"required": false,
|
|
82
|
+
"type": {
|
|
83
|
+
"name": "boolean"
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"shape": {
|
|
87
|
+
"defaultValue": {
|
|
88
|
+
"value": "\"rectangle\""
|
|
89
|
+
},
|
|
90
|
+
"description": "Shape variant of the skeleton placeholder.\n- rectangle: default shape with small border radius (~4px)\n- circle: fully-rounded with 1:1 aspect ratio",
|
|
91
|
+
"name": "shape",
|
|
92
|
+
"declarations": [
|
|
93
|
+
{
|
|
94
|
+
"fileName": "nimbus/packages/nimbus/src/components/skeleton/skeleton.types.ts",
|
|
95
|
+
"name": "TypeLiteral"
|
|
96
|
+
}
|
|
97
|
+
],
|
|
98
|
+
"required": false,
|
|
99
|
+
"type": {
|
|
100
|
+
"name": "enum",
|
|
101
|
+
"raw": "\"circle\" | \"rectangle\"",
|
|
102
|
+
"value": [
|
|
103
|
+
{
|
|
104
|
+
"value": "\"circle\""
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"value": "\"rectangle\""
|
|
108
|
+
}
|
|
109
|
+
]
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"ref": {
|
|
113
|
+
"defaultValue": null,
|
|
114
|
+
"description": "Ref forwarding to the root element.",
|
|
115
|
+
"name": "ref",
|
|
116
|
+
"declarations": [
|
|
117
|
+
{
|
|
118
|
+
"fileName": "nimbus/packages/nimbus/src/components/skeleton/skeleton.types.ts",
|
|
119
|
+
"name": "TypeLiteral"
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"required": false,
|
|
123
|
+
"type": {
|
|
124
|
+
"name": "Ref<HTMLDivElement>"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
"supportsStyleProps": true
|
|
129
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tags": {
|
|
3
|
+
"see": "{@link https://nimbus-documentation.vercel.app/components/feedback/skeletoncircle}",
|
|
4
|
+
"supportsStyleProps": ""
|
|
5
|
+
},
|
|
6
|
+
"filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
|
|
7
|
+
"description": "# SkeletonCircle\n\nA circular loading placeholder. Sugar over `Skeleton` with `shape=\"circle\"`:\nsize it with the avatar-aligned `size` prop (inherited from `Skeleton`) to\nstand in for an `Avatar`, or with a `boxSize` style prop for a custom\ndimension. Defaults to a `1em` circle, useful inline.",
|
|
8
|
+
"displayName": "SkeletonCircle",
|
|
9
|
+
"methods": [],
|
|
10
|
+
"props": {
|
|
11
|
+
"size": {
|
|
12
|
+
"defaultValue": null,
|
|
13
|
+
"description": "Named square size, aligned with the Avatar size scale\n(`2xs` = 24px, `xs` = 32px, `md` = 40px), applied as equal width and height.\nOpt-in with no default — leave unset and size the placeholder with\n`width`/`height`/`boxSize` instead. `SkeletonCircle` reuses this to size its\ncircle.",
|
|
14
|
+
"name": "size",
|
|
15
|
+
"declarations": [
|
|
16
|
+
{
|
|
17
|
+
"fileName": "nimbus/packages/nimbus/src/components/skeleton/skeleton.types.ts",
|
|
18
|
+
"name": "TypeLiteral"
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"required": false,
|
|
22
|
+
"type": {
|
|
23
|
+
"name": "enum",
|
|
24
|
+
"raw": "\"md\" | \"2xs\" | \"xs\"",
|
|
25
|
+
"value": [
|
|
26
|
+
{
|
|
27
|
+
"value": "\"md\""
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"value": "\"2xs\""
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"value": "\"xs\""
|
|
34
|
+
}
|
|
35
|
+
]
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"animation": {
|
|
39
|
+
"defaultValue": {
|
|
40
|
+
"value": "\"pulse\""
|
|
41
|
+
},
|
|
42
|
+
"description": "Animation variant of the skeleton placeholder.\n- pulse: opacity oscillation (default)\n- wave: gradient shimmer sweep via ::after pseudo-element\n- none: no animation",
|
|
43
|
+
"name": "animation",
|
|
44
|
+
"declarations": [
|
|
45
|
+
{
|
|
46
|
+
"fileName": "nimbus/packages/nimbus/src/components/skeleton/skeleton.types.ts",
|
|
47
|
+
"name": "TypeLiteral"
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"required": false,
|
|
51
|
+
"type": {
|
|
52
|
+
"name": "enum",
|
|
53
|
+
"raw": "\"none\" | \"pulse\" | \"wave\"",
|
|
54
|
+
"value": [
|
|
55
|
+
{
|
|
56
|
+
"value": "\"none\""
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"value": "\"pulse\""
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"value": "\"wave\""
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"unstyled": {
|
|
68
|
+
"defaultValue": null,
|
|
69
|
+
"description": "If `true`, the element will opt out of the theme styles.",
|
|
70
|
+
"name": "unstyled",
|
|
71
|
+
"parent": {
|
|
72
|
+
"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",
|
|
73
|
+
"name": "UnstyledProp"
|
|
74
|
+
},
|
|
75
|
+
"declarations": [
|
|
76
|
+
{
|
|
77
|
+
"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",
|
|
78
|
+
"name": "UnstyledProp"
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"required": false,
|
|
82
|
+
"type": {
|
|
83
|
+
"name": "boolean"
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"ref": {
|
|
87
|
+
"defaultValue": null,
|
|
88
|
+
"description": "Ref forwarding to the root element.",
|
|
89
|
+
"name": "ref",
|
|
90
|
+
"declarations": [
|
|
91
|
+
{
|
|
92
|
+
"fileName": "nimbus/packages/nimbus/src/components/skeleton/derivatives/skeleton-circle/skeleton-circle.types.ts",
|
|
93
|
+
"name": "TypeLiteral"
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"required": false,
|
|
97
|
+
"type": {
|
|
98
|
+
"name": "Ref<HTMLDivElement>"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"supportsStyleProps": true
|
|
103
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tags": {},
|
|
3
|
+
"filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
|
|
4
|
+
"description": "Props for the SkeletonCircle component.\n\nA circular loading placeholder. Inherits the base `Skeleton` props: use the\navatar-aligned `size` prop (`2xs`/`xs`/`md`) to match an `Avatar`, or a\n`boxSize` style prop for a custom dimension. `width`/`height` and `shape` are\nomitted — it always renders as a circle, and defaults to `1em` when unsized.",
|
|
5
|
+
"displayName": "SkeletonCircleProps",
|
|
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 Skeleton component.\nRenders a single block-level loading placeholder element.\nAccepts all standard Chakra UI style props for sizing and positioning\n(e.g. `width`, `height`, `borderRadius`).",
|
|
5
|
+
"displayName": "SkeletonProps",
|
|
6
|
+
"methods": [],
|
|
7
|
+
"props": {},
|
|
8
|
+
"supportsStyleProps": false
|
|
9
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tags": {
|
|
3
|
+
"see": "{@link https://nimbus-documentation.vercel.app/components/feedback/skeletontext}",
|
|
4
|
+
"supportsStyleProps": ""
|
|
5
|
+
},
|
|
6
|
+
"filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
|
|
7
|
+
"description": "# SkeletonText\n\nA stack of placeholder lines that approximates a paragraph of text while\ncontent loads. The last line is narrower by default to mimic a real paragraph\nending. Composed of `Skeleton` lines; does not use its own recipe.",
|
|
8
|
+
"displayName": "SkeletonText",
|
|
9
|
+
"methods": [],
|
|
10
|
+
"props": {
|
|
11
|
+
"lines": {
|
|
12
|
+
"defaultValue": {
|
|
13
|
+
"value": "3"
|
|
14
|
+
},
|
|
15
|
+
"description": "Number of placeholder lines to render.",
|
|
16
|
+
"name": "lines",
|
|
17
|
+
"declarations": [
|
|
18
|
+
{
|
|
19
|
+
"fileName": "nimbus/packages/nimbus/src/components/skeleton/derivatives/skeleton-text/skeleton-text.types.ts",
|
|
20
|
+
"name": "TypeLiteral"
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"required": false,
|
|
24
|
+
"type": {
|
|
25
|
+
"name": "number"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"lastLineWidth": {
|
|
29
|
+
"defaultValue": {
|
|
30
|
+
"value": "\"60%\""
|
|
31
|
+
},
|
|
32
|
+
"description": "Width of the last line, narrower to mimic a paragraph ending.",
|
|
33
|
+
"name": "lastLineWidth",
|
|
34
|
+
"declarations": [
|
|
35
|
+
{
|
|
36
|
+
"fileName": "nimbus/packages/nimbus/src/components/skeleton/derivatives/skeleton-text/skeleton-text.types.ts",
|
|
37
|
+
"name": "TypeLiteral"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"required": false,
|
|
41
|
+
"type": {
|
|
42
|
+
"name": "string | number"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"ref": {
|
|
46
|
+
"defaultValue": null,
|
|
47
|
+
"description": "Ref forwarding to the root container element.",
|
|
48
|
+
"name": "ref",
|
|
49
|
+
"declarations": [
|
|
50
|
+
{
|
|
51
|
+
"fileName": "nimbus/packages/nimbus/src/components/skeleton/derivatives/skeleton-text/skeleton-text.types.ts",
|
|
52
|
+
"name": "TypeLiteral"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"required": false,
|
|
56
|
+
"type": {
|
|
57
|
+
"name": "Ref<HTMLDivElement>"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"supportsStyleProps": true
|
|
62
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tags": {},
|
|
3
|
+
"filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
|
|
4
|
+
"description": "Props for the SkeletonText component.\nRenders a stack of N placeholder lines to approximate a paragraph of text.\n\nNote: `shape` is intentionally absent — SkeletonText lines are always\nrectangles. Use `Skeleton shape=\"circle\"` or `SkeletonCircle` for circular\nplaceholders.",
|
|
5
|
+
"displayName": "SkeletonTextProps",
|
|
6
|
+
"methods": [],
|
|
7
|
+
"props": {},
|
|
8
|
+
"supportsStyleProps": false
|
|
9
|
+
}
|
|
@@ -0,0 +1,337 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tags": {},
|
|
3
|
+
"filePath": "/home/runner/work/nimbus/nimbus/packages/nimbus/src/index.ts",
|
|
4
|
+
"description": "# Slider\n\nA single-thumb slider for selecting one numeric value within a range. Wraps\nReact Aria's Slider with Nimbus styling; the current value is shown in a\ntooltip on the handle while hovering, focusing, or dragging. Provide an\n`aria-label` (or use inside `FormField`) for the accessible name.",
|
|
5
|
+
"displayName": "Slider",
|
|
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/slider.types.ts",
|
|
282
|
+
"name": "TypeLiteral"
|
|
283
|
+
}
|
|
284
|
+
],
|
|
285
|
+
"required": false,
|
|
286
|
+
"type": {
|
|
287
|
+
"name": "number"
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
"defaultValue": {
|
|
291
|
+
"defaultValue": null,
|
|
292
|
+
"description": "",
|
|
293
|
+
"name": "defaultValue",
|
|
294
|
+
"declarations": [
|
|
295
|
+
{
|
|
296
|
+
"fileName": "nimbus/packages/nimbus/src/components/slider/slider.types.ts",
|
|
297
|
+
"name": "TypeLiteral"
|
|
298
|
+
}
|
|
299
|
+
],
|
|
300
|
+
"required": false,
|
|
301
|
+
"type": {
|
|
302
|
+
"name": "number"
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
"onChange": {
|
|
306
|
+
"defaultValue": null,
|
|
307
|
+
"description": "",
|
|
308
|
+
"name": "onChange",
|
|
309
|
+
"declarations": [
|
|
310
|
+
{
|
|
311
|
+
"fileName": "nimbus/packages/nimbus/src/components/slider/slider.types.ts",
|
|
312
|
+
"name": "TypeLiteral"
|
|
313
|
+
}
|
|
314
|
+
],
|
|
315
|
+
"required": false,
|
|
316
|
+
"type": {
|
|
317
|
+
"name": "((value: 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/slider.types.ts",
|
|
327
|
+
"name": "TypeLiteral"
|
|
328
|
+
}
|
|
329
|
+
],
|
|
330
|
+
"required": false,
|
|
331
|
+
"type": {
|
|
332
|
+
"name": "((value: number) => void)"
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
},
|
|
336
|
+
"supportsStyleProps": false
|
|
337
|
+
}
|