File tree Expand file tree Collapse file tree 1 file changed +32
-2
lines changed
packages/react-renderer-demo/src/pages/mappers Expand file tree Collapse file tree 1 file changed +32
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ Basic components that can change the form state (inputs) share common props. The
53
53
54
54
<ExampleLink to =' text-field ' />
55
55
56
- ### Text area
56
+ ### Textarea
57
57
58
58
| Prop| Type| Description|
59
59
| ----| :--:| ----------:|
@@ -129,6 +129,36 @@ This component is using [react-day-picker](https://react-day-picker.js.org/docs/
129
129
130
130
<ExampleLink to =' time-picker ' />
131
131
132
+ ### Slider
133
+
134
+ | Prop| Type| Description|
135
+ | ----| :--:| ----------:|
136
+ | min| number| The minimum permitted value|
137
+ | max| number| The maximum permitted value|
138
+ | step| number| The stepping interval|
139
+
140
+ <ExampleLink to =' slider ' />
141
+
142
+ ### Dual list select
143
+
144
+ | Prop| Type| Description|
145
+ | ----| :--:| ----------:|
146
+ | options| array| Options in format of { label: 'Label', value: value }|
147
+
148
+ <ExampleLink to =' dual-list-select ' />
149
+
150
+ ### Field array
151
+
152
+ | Prop| Type| Description|
153
+ | ----| :--:| ----------:|
154
+ | fields| array| Form fields|
155
+ | minItems| number| Minimal number of items|
156
+ | maxItems| min| Maximum number of items|
157
+ | fields| array| Form fields|
158
+ | defaultItem| any| Default item|
159
+
160
+ <ExampleLink to =' field-array ' />
161
+
132
162
## Others components
133
163
134
164
### Subform
@@ -137,7 +167,7 @@ This component is using [react-day-picker](https://react-day-picker.js.org/docs/
137
167
| ----| :--:| ----------:|
138
168
| title| node/string| A title|
139
169
| description| node/string| A description|
140
- | fields| array| A form fields|
170
+ | fields| array| Form fields|
141
171
142
172
<ExampleLink to =' sub-form ' />
143
173
You can’t perform that action at this time.
0 commit comments