@itcase/ui 1.0.66 → 1.0.70
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/dist/components/Accordion.js +349 -0
- package/dist/components/Avatar.js +100 -0
- package/dist/components/Background.js +172 -0
- package/dist/components/Badge.js +109 -32
- package/dist/components/Breadcrumbs.js +414 -0
- package/dist/components/Button.js +364 -59
- package/dist/components/Caption.js +129 -0
- package/dist/components/Card.js +171 -0
- package/dist/components/Cell.js +190 -0
- package/dist/components/Checkbox.js +14 -0
- package/dist/components/Chips.js +247 -0
- package/dist/components/Choice.js +60 -0
- package/dist/components/Code.js +119 -0
- package/dist/components/ContextMenu.js +83 -0
- package/dist/components/CookiesWarning.js +55 -6
- package/dist/components/DadataHintField.js +49 -0
- package/dist/components/DatePicker.js +71 -8
- package/dist/components/Divider.js +165 -0
- package/dist/components/Dot.js +157 -0
- package/dist/components/Drawer.js +77 -0
- package/dist/components/Dropdown.js +421 -0
- package/dist/components/Empty.js +124 -3
- package/dist/components/Fader.js +128 -0
- package/dist/components/Flex.js +898 -0
- package/dist/components/FormField.js +306 -2
- package/dist/components/Grid.js +1299 -0
- package/dist/components/Group.js +377 -0
- package/dist/components/Icon.js +342 -0
- package/dist/components/Image.js +326 -0
- package/dist/components/Input.js +88 -0
- package/dist/components/InputPassword.js +88 -0
- package/dist/components/Label.js +255 -1
- package/dist/components/LanguageSelector.js +35 -0
- package/dist/components/Link.js +324 -0
- package/dist/components/List.js +349 -0
- package/dist/components/Loader.js +49 -0
- package/dist/components/Logo.js +49 -0
- package/dist/components/Menu.js +98 -0
- package/dist/components/MenuItem.js +386 -0
- package/dist/components/Modal.js +147 -0
- package/dist/components/Notification.js +133 -0
- package/dist/components/Page.js +308 -0
- package/dist/components/Pagination.js +30 -2
- package/dist/components/RadioButton.js +28 -0
- package/dist/components/RangeSlider.js +171 -0
- package/dist/components/Scrollbar.js +14 -0
- package/dist/components/Search.js +299 -0
- package/dist/components/Segmented.js +60 -0
- package/dist/components/Select.js +524 -1
- package/dist/components/SiteMenu.js +70 -0
- package/dist/components/Swiper.js +361 -0
- package/dist/components/Switch.js +49 -0
- package/dist/components/Tab.js +750 -3
- package/dist/components/Text.js +218 -2
- package/dist/components/Textarea.js +78 -2
- package/dist/components/Tile.js +366 -2
- package/dist/components/Title.js +235 -0
- package/dist/components/Tooltip.js +195 -0
- package/dist/components/Video.js +98 -0
- package/dist/components/Wrapper.js +316 -0
- package/dist/constants/componentProps/iconSize.js +1 -1
- package/dist/constants/componentProps/itemColor.js +5 -0
- package/dist/constants/componentProps/size.js +1 -1
- package/dist/constants/componentProps/textSize.js +5 -0
- package/dist/constants/componentProps/textWrap.js +5 -0
- package/dist/constants.js +8 -2
- package/dist/context/Notifications.js +14 -0
- package/dist/css/components/Badge/Badge.css +1 -1
- package/dist/css/components/Button/Button.css +1 -1
- package/dist/css/components/DatePicker/DatePicker.css +6 -1
- package/dist/css/components/RadioButton/RadioButton.css +19 -19
- package/dist/css/components/Segmented/Segmented.css +6 -8
- package/dist/css/styles/constraints/constraints.css +42 -29
- package/dist/css/styles/width/width.css +3 -1
- package/package.json +2 -1
package/dist/components/Card.js
CHANGED
|
@@ -108,5 +108,176 @@ Card.defaultProps = {
|
|
|
108
108
|
imageShape: 'rounded',
|
|
109
109
|
textColor: 'surfaceTextPrimary'
|
|
110
110
|
};
|
|
111
|
+
Card.__docgenInfo = {
|
|
112
|
+
"description": "",
|
|
113
|
+
"methods": [],
|
|
114
|
+
"displayName": "Card",
|
|
115
|
+
"props": {
|
|
116
|
+
"textSize": {
|
|
117
|
+
"defaultValue": {
|
|
118
|
+
"value": "'p'",
|
|
119
|
+
"computed": false
|
|
120
|
+
},
|
|
121
|
+
"required": false
|
|
122
|
+
},
|
|
123
|
+
"titleColor": {
|
|
124
|
+
"defaultValue": {
|
|
125
|
+
"value": "'surfaceTextPrimary'",
|
|
126
|
+
"computed": false
|
|
127
|
+
},
|
|
128
|
+
"required": false
|
|
129
|
+
},
|
|
130
|
+
"titleTag": {
|
|
131
|
+
"defaultValue": {
|
|
132
|
+
"value": "'span'",
|
|
133
|
+
"computed": false
|
|
134
|
+
},
|
|
135
|
+
"required": false
|
|
136
|
+
},
|
|
137
|
+
"titleSize": {
|
|
138
|
+
"defaultValue": {
|
|
139
|
+
"value": "'h5'",
|
|
140
|
+
"computed": false
|
|
141
|
+
},
|
|
142
|
+
"required": false
|
|
143
|
+
},
|
|
144
|
+
"imageShape": {
|
|
145
|
+
"defaultValue": {
|
|
146
|
+
"value": "'rounded'",
|
|
147
|
+
"computed": false
|
|
148
|
+
},
|
|
149
|
+
"description": "",
|
|
150
|
+
"type": {
|
|
151
|
+
"name": "enum",
|
|
152
|
+
"computed": true,
|
|
153
|
+
"value": "shapeProps"
|
|
154
|
+
},
|
|
155
|
+
"required": false
|
|
156
|
+
},
|
|
157
|
+
"textColor": {
|
|
158
|
+
"defaultValue": {
|
|
159
|
+
"value": "'surfaceTextPrimary'",
|
|
160
|
+
"computed": false
|
|
161
|
+
},
|
|
162
|
+
"required": false
|
|
163
|
+
},
|
|
164
|
+
"size": {
|
|
165
|
+
"description": "",
|
|
166
|
+
"type": {
|
|
167
|
+
"name": "enum",
|
|
168
|
+
"computed": true,
|
|
169
|
+
"value": "PropTypes.oneOf(sizeProps)"
|
|
170
|
+
},
|
|
171
|
+
"required": false
|
|
172
|
+
},
|
|
173
|
+
"children": {
|
|
174
|
+
"description": "",
|
|
175
|
+
"type": {
|
|
176
|
+
"name": "any"
|
|
177
|
+
},
|
|
178
|
+
"required": false
|
|
179
|
+
},
|
|
180
|
+
"className": {
|
|
181
|
+
"description": "",
|
|
182
|
+
"type": {
|
|
183
|
+
"name": "string"
|
|
184
|
+
},
|
|
185
|
+
"required": false
|
|
186
|
+
},
|
|
187
|
+
"type": {
|
|
188
|
+
"description": "",
|
|
189
|
+
"type": {
|
|
190
|
+
"name": "string"
|
|
191
|
+
},
|
|
192
|
+
"required": false
|
|
193
|
+
},
|
|
194
|
+
"shape": {
|
|
195
|
+
"description": "",
|
|
196
|
+
"type": {
|
|
197
|
+
"name": "enum",
|
|
198
|
+
"computed": true,
|
|
199
|
+
"value": "shapeProps"
|
|
200
|
+
},
|
|
201
|
+
"required": false
|
|
202
|
+
},
|
|
203
|
+
"shapeDesktop": {
|
|
204
|
+
"description": "",
|
|
205
|
+
"type": {
|
|
206
|
+
"name": "enum",
|
|
207
|
+
"computed": true,
|
|
208
|
+
"value": "shapeProps"
|
|
209
|
+
},
|
|
210
|
+
"required": false
|
|
211
|
+
},
|
|
212
|
+
"shapeMobile": {
|
|
213
|
+
"description": "",
|
|
214
|
+
"type": {
|
|
215
|
+
"name": "enum",
|
|
216
|
+
"computed": true,
|
|
217
|
+
"value": "shapeProps"
|
|
218
|
+
},
|
|
219
|
+
"required": false
|
|
220
|
+
},
|
|
221
|
+
"shapeTablet": {
|
|
222
|
+
"description": "",
|
|
223
|
+
"type": {
|
|
224
|
+
"name": "enum",
|
|
225
|
+
"computed": true,
|
|
226
|
+
"value": "shapeProps"
|
|
227
|
+
},
|
|
228
|
+
"required": false
|
|
229
|
+
},
|
|
230
|
+
"image": {
|
|
231
|
+
"description": "",
|
|
232
|
+
"type": {
|
|
233
|
+
"name": "string"
|
|
234
|
+
},
|
|
235
|
+
"required": false
|
|
236
|
+
},
|
|
237
|
+
"onClick": {
|
|
238
|
+
"description": "",
|
|
239
|
+
"type": {
|
|
240
|
+
"name": "func"
|
|
241
|
+
},
|
|
242
|
+
"required": false
|
|
243
|
+
},
|
|
244
|
+
"width": {
|
|
245
|
+
"description": "",
|
|
246
|
+
"type": {
|
|
247
|
+
"name": "enum",
|
|
248
|
+
"computed": true,
|
|
249
|
+
"value": "horizontalResizeModeProps"
|
|
250
|
+
},
|
|
251
|
+
"required": false
|
|
252
|
+
},
|
|
253
|
+
"widthMobile": {
|
|
254
|
+
"description": "",
|
|
255
|
+
"type": {
|
|
256
|
+
"name": "enum",
|
|
257
|
+
"computed": true,
|
|
258
|
+
"value": "horizontalResizeModeProps"
|
|
259
|
+
},
|
|
260
|
+
"required": false
|
|
261
|
+
},
|
|
262
|
+
"widthTablet": {
|
|
263
|
+
"description": "",
|
|
264
|
+
"type": {
|
|
265
|
+
"name": "enum",
|
|
266
|
+
"computed": true,
|
|
267
|
+
"value": "horizontalResizeModeProps"
|
|
268
|
+
},
|
|
269
|
+
"required": false
|
|
270
|
+
},
|
|
271
|
+
"widthDesktop": {
|
|
272
|
+
"description": "",
|
|
273
|
+
"type": {
|
|
274
|
+
"name": "enum",
|
|
275
|
+
"computed": true,
|
|
276
|
+
"value": "horizontalResizeModeProps"
|
|
277
|
+
},
|
|
278
|
+
"required": false
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
};
|
|
111
282
|
|
|
112
283
|
exports.Card = Card;
|
package/dist/components/Cell.js
CHANGED
|
@@ -188,5 +188,195 @@ Cell.defaultProps = {
|
|
|
188
188
|
isDisabled: false,
|
|
189
189
|
textSize: 'p'
|
|
190
190
|
};
|
|
191
|
+
Cell.__docgenInfo = {
|
|
192
|
+
"description": "",
|
|
193
|
+
"methods": [],
|
|
194
|
+
"displayName": "Cell",
|
|
195
|
+
"props": {
|
|
196
|
+
"isDisabled": {
|
|
197
|
+
"defaultValue": {
|
|
198
|
+
"value": "false",
|
|
199
|
+
"computed": false
|
|
200
|
+
},
|
|
201
|
+
"description": "",
|
|
202
|
+
"type": {
|
|
203
|
+
"name": "bool"
|
|
204
|
+
},
|
|
205
|
+
"required": false
|
|
206
|
+
},
|
|
207
|
+
"textSize": {
|
|
208
|
+
"defaultValue": {
|
|
209
|
+
"value": "'p'",
|
|
210
|
+
"computed": false
|
|
211
|
+
},
|
|
212
|
+
"required": false
|
|
213
|
+
},
|
|
214
|
+
"children": {
|
|
215
|
+
"description": "",
|
|
216
|
+
"type": {
|
|
217
|
+
"name": "any"
|
|
218
|
+
},
|
|
219
|
+
"required": false
|
|
220
|
+
},
|
|
221
|
+
"className": {
|
|
222
|
+
"description": "",
|
|
223
|
+
"type": {
|
|
224
|
+
"name": "string"
|
|
225
|
+
},
|
|
226
|
+
"required": false
|
|
227
|
+
},
|
|
228
|
+
"after": {
|
|
229
|
+
"description": "",
|
|
230
|
+
"type": {
|
|
231
|
+
"name": "any"
|
|
232
|
+
},
|
|
233
|
+
"required": false
|
|
234
|
+
},
|
|
235
|
+
"before": {
|
|
236
|
+
"description": "",
|
|
237
|
+
"type": {
|
|
238
|
+
"name": "any"
|
|
239
|
+
},
|
|
240
|
+
"required": false
|
|
241
|
+
},
|
|
242
|
+
"value": {
|
|
243
|
+
"description": "",
|
|
244
|
+
"type": {
|
|
245
|
+
"name": "string"
|
|
246
|
+
},
|
|
247
|
+
"required": false
|
|
248
|
+
},
|
|
249
|
+
"valueTextSize": {
|
|
250
|
+
"description": "",
|
|
251
|
+
"type": {
|
|
252
|
+
"name": "enum",
|
|
253
|
+
"computed": true,
|
|
254
|
+
"value": "PropTypes.oneOf(sizeProps)"
|
|
255
|
+
},
|
|
256
|
+
"required": false
|
|
257
|
+
},
|
|
258
|
+
"valueTextColor": {
|
|
259
|
+
"description": "",
|
|
260
|
+
"type": {
|
|
261
|
+
"name": "string"
|
|
262
|
+
},
|
|
263
|
+
"required": false
|
|
264
|
+
},
|
|
265
|
+
"title": {
|
|
266
|
+
"description": "",
|
|
267
|
+
"type": {
|
|
268
|
+
"name": "string"
|
|
269
|
+
},
|
|
270
|
+
"required": false
|
|
271
|
+
},
|
|
272
|
+
"titleTextSize": {
|
|
273
|
+
"description": "",
|
|
274
|
+
"type": {
|
|
275
|
+
"name": "enum",
|
|
276
|
+
"computed": true,
|
|
277
|
+
"value": "PropTypes.oneOf(sizeProps)"
|
|
278
|
+
},
|
|
279
|
+
"required": false
|
|
280
|
+
},
|
|
281
|
+
"titleTextColor": {
|
|
282
|
+
"description": "",
|
|
283
|
+
"type": {
|
|
284
|
+
"name": "string"
|
|
285
|
+
},
|
|
286
|
+
"required": false
|
|
287
|
+
},
|
|
288
|
+
"onClick": {
|
|
289
|
+
"description": "",
|
|
290
|
+
"type": {
|
|
291
|
+
"name": "func"
|
|
292
|
+
},
|
|
293
|
+
"required": false
|
|
294
|
+
},
|
|
295
|
+
"onMouseEnter": {
|
|
296
|
+
"description": "",
|
|
297
|
+
"type": {
|
|
298
|
+
"name": "func"
|
|
299
|
+
},
|
|
300
|
+
"required": false
|
|
301
|
+
},
|
|
302
|
+
"iconAfter": {
|
|
303
|
+
"description": "",
|
|
304
|
+
"type": {
|
|
305
|
+
"name": "any"
|
|
306
|
+
},
|
|
307
|
+
"required": false
|
|
308
|
+
},
|
|
309
|
+
"iconAfterSize": {
|
|
310
|
+
"description": "",
|
|
311
|
+
"type": {
|
|
312
|
+
"name": "string"
|
|
313
|
+
},
|
|
314
|
+
"required": false
|
|
315
|
+
},
|
|
316
|
+
"iconBefore": {
|
|
317
|
+
"description": "",
|
|
318
|
+
"type": {
|
|
319
|
+
"name": "any"
|
|
320
|
+
},
|
|
321
|
+
"required": false
|
|
322
|
+
},
|
|
323
|
+
"iconBeforeSize": {
|
|
324
|
+
"description": "",
|
|
325
|
+
"type": {
|
|
326
|
+
"name": "string"
|
|
327
|
+
},
|
|
328
|
+
"required": false
|
|
329
|
+
},
|
|
330
|
+
"iconBeforeBgFill": {
|
|
331
|
+
"description": "",
|
|
332
|
+
"type": {
|
|
333
|
+
"name": "string"
|
|
334
|
+
},
|
|
335
|
+
"required": false
|
|
336
|
+
},
|
|
337
|
+
"iconBeforeFill": {
|
|
338
|
+
"description": "",
|
|
339
|
+
"type": {
|
|
340
|
+
"name": "string"
|
|
341
|
+
},
|
|
342
|
+
"required": false
|
|
343
|
+
},
|
|
344
|
+
"iconBeforeStroke": {
|
|
345
|
+
"description": "",
|
|
346
|
+
"type": {
|
|
347
|
+
"name": "string"
|
|
348
|
+
},
|
|
349
|
+
"required": false
|
|
350
|
+
},
|
|
351
|
+
"iconAfterBgFill": {
|
|
352
|
+
"description": "",
|
|
353
|
+
"type": {
|
|
354
|
+
"name": "string"
|
|
355
|
+
},
|
|
356
|
+
"required": false
|
|
357
|
+
},
|
|
358
|
+
"iconAfterFill": {
|
|
359
|
+
"description": "",
|
|
360
|
+
"type": {
|
|
361
|
+
"name": "string"
|
|
362
|
+
},
|
|
363
|
+
"required": false
|
|
364
|
+
},
|
|
365
|
+
"iconAfterStroke": {
|
|
366
|
+
"description": "",
|
|
367
|
+
"type": {
|
|
368
|
+
"name": "string"
|
|
369
|
+
},
|
|
370
|
+
"required": false
|
|
371
|
+
},
|
|
372
|
+
"isActive": {
|
|
373
|
+
"description": "",
|
|
374
|
+
"type": {
|
|
375
|
+
"name": "bool"
|
|
376
|
+
},
|
|
377
|
+
"required": false
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
};
|
|
191
381
|
|
|
192
382
|
exports.Cell = Cell;
|
|
@@ -121,6 +121,20 @@ function Checkbox(props) {
|
|
|
121
121
|
Checkbox.propTypes = {
|
|
122
122
|
className: PropTypes__default.default.string
|
|
123
123
|
};
|
|
124
|
+
Checkbox.__docgenInfo = {
|
|
125
|
+
"description": "",
|
|
126
|
+
"methods": [],
|
|
127
|
+
"displayName": "Checkbox",
|
|
128
|
+
"props": {
|
|
129
|
+
"className": {
|
|
130
|
+
"description": "",
|
|
131
|
+
"type": {
|
|
132
|
+
"name": "string"
|
|
133
|
+
},
|
|
134
|
+
"required": false
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
};
|
|
124
138
|
|
|
125
139
|
exports.Checkbox = Checkbox;
|
|
126
140
|
exports.checkboxConfig = checkboxConfig;
|
package/dist/components/Chips.js
CHANGED
|
@@ -131,6 +131,253 @@ Chips.propTypes = {
|
|
|
131
131
|
Chips.defaultProps = {
|
|
132
132
|
label: 'Chips'
|
|
133
133
|
};
|
|
134
|
+
Chips.__docgenInfo = {
|
|
135
|
+
"description": "",
|
|
136
|
+
"methods": [],
|
|
137
|
+
"displayName": "Chips",
|
|
138
|
+
"props": {
|
|
139
|
+
"label": {
|
|
140
|
+
"defaultValue": {
|
|
141
|
+
"value": "'Chips'",
|
|
142
|
+
"computed": false
|
|
143
|
+
},
|
|
144
|
+
"description": "",
|
|
145
|
+
"type": {
|
|
146
|
+
"name": "any"
|
|
147
|
+
},
|
|
148
|
+
"required": false
|
|
149
|
+
},
|
|
150
|
+
"children": {
|
|
151
|
+
"description": "",
|
|
152
|
+
"type": {
|
|
153
|
+
"name": "any"
|
|
154
|
+
},
|
|
155
|
+
"required": false
|
|
156
|
+
},
|
|
157
|
+
"className": {
|
|
158
|
+
"description": "",
|
|
159
|
+
"type": {
|
|
160
|
+
"name": "string"
|
|
161
|
+
},
|
|
162
|
+
"required": false
|
|
163
|
+
},
|
|
164
|
+
"border": {
|
|
165
|
+
"description": "",
|
|
166
|
+
"type": {
|
|
167
|
+
"name": "string"
|
|
168
|
+
},
|
|
169
|
+
"required": false
|
|
170
|
+
},
|
|
171
|
+
"borderDesktop": {
|
|
172
|
+
"description": "",
|
|
173
|
+
"type": {
|
|
174
|
+
"name": "string"
|
|
175
|
+
},
|
|
176
|
+
"required": false
|
|
177
|
+
},
|
|
178
|
+
"borderMobile": {
|
|
179
|
+
"description": "",
|
|
180
|
+
"type": {
|
|
181
|
+
"name": "string"
|
|
182
|
+
},
|
|
183
|
+
"required": false
|
|
184
|
+
},
|
|
185
|
+
"borderTablet": {
|
|
186
|
+
"description": "",
|
|
187
|
+
"type": {
|
|
188
|
+
"name": "string"
|
|
189
|
+
},
|
|
190
|
+
"required": false
|
|
191
|
+
},
|
|
192
|
+
"borderType": {
|
|
193
|
+
"description": "",
|
|
194
|
+
"type": {
|
|
195
|
+
"name": "enum",
|
|
196
|
+
"computed": true,
|
|
197
|
+
"value": "borderTypeProps"
|
|
198
|
+
},
|
|
199
|
+
"required": false
|
|
200
|
+
},
|
|
201
|
+
"borderTypeDesktop": {
|
|
202
|
+
"description": "",
|
|
203
|
+
"type": {
|
|
204
|
+
"name": "enum",
|
|
205
|
+
"computed": true,
|
|
206
|
+
"value": "borderTypeProps"
|
|
207
|
+
},
|
|
208
|
+
"required": false
|
|
209
|
+
},
|
|
210
|
+
"borderTypeMobile": {
|
|
211
|
+
"description": "",
|
|
212
|
+
"type": {
|
|
213
|
+
"name": "enum",
|
|
214
|
+
"computed": true,
|
|
215
|
+
"value": "borderTypeProps"
|
|
216
|
+
},
|
|
217
|
+
"required": false
|
|
218
|
+
},
|
|
219
|
+
"borderTypeTablet": {
|
|
220
|
+
"description": "",
|
|
221
|
+
"type": {
|
|
222
|
+
"name": "enum",
|
|
223
|
+
"computed": true,
|
|
224
|
+
"value": "borderTypeProps"
|
|
225
|
+
},
|
|
226
|
+
"required": false
|
|
227
|
+
},
|
|
228
|
+
"fill": {
|
|
229
|
+
"description": "",
|
|
230
|
+
"type": {
|
|
231
|
+
"name": "enum",
|
|
232
|
+
"computed": true,
|
|
233
|
+
"value": "fillProps"
|
|
234
|
+
},
|
|
235
|
+
"required": false
|
|
236
|
+
},
|
|
237
|
+
"fillDesktop": {
|
|
238
|
+
"description": "",
|
|
239
|
+
"type": {
|
|
240
|
+
"name": "enum",
|
|
241
|
+
"computed": true,
|
|
242
|
+
"value": "fillProps"
|
|
243
|
+
},
|
|
244
|
+
"required": false
|
|
245
|
+
},
|
|
246
|
+
"fillMobile": {
|
|
247
|
+
"description": "",
|
|
248
|
+
"type": {
|
|
249
|
+
"name": "enum",
|
|
250
|
+
"computed": true,
|
|
251
|
+
"value": "fillProps"
|
|
252
|
+
},
|
|
253
|
+
"required": false
|
|
254
|
+
},
|
|
255
|
+
"fillTablet": {
|
|
256
|
+
"description": "",
|
|
257
|
+
"type": {
|
|
258
|
+
"name": "enum",
|
|
259
|
+
"computed": true,
|
|
260
|
+
"value": "fillProps"
|
|
261
|
+
},
|
|
262
|
+
"required": false
|
|
263
|
+
},
|
|
264
|
+
"shape": {
|
|
265
|
+
"description": "",
|
|
266
|
+
"type": {
|
|
267
|
+
"name": "enum",
|
|
268
|
+
"computed": true,
|
|
269
|
+
"value": "shapeProps"
|
|
270
|
+
},
|
|
271
|
+
"required": false
|
|
272
|
+
},
|
|
273
|
+
"shapeDesktop": {
|
|
274
|
+
"description": "",
|
|
275
|
+
"type": {
|
|
276
|
+
"name": "enum",
|
|
277
|
+
"computed": true,
|
|
278
|
+
"value": "shapeProps"
|
|
279
|
+
},
|
|
280
|
+
"required": false
|
|
281
|
+
},
|
|
282
|
+
"shapeMobile": {
|
|
283
|
+
"description": "",
|
|
284
|
+
"type": {
|
|
285
|
+
"name": "enum",
|
|
286
|
+
"computed": true,
|
|
287
|
+
"value": "shapeProps"
|
|
288
|
+
},
|
|
289
|
+
"required": false
|
|
290
|
+
},
|
|
291
|
+
"shapeTablet": {
|
|
292
|
+
"description": "",
|
|
293
|
+
"type": {
|
|
294
|
+
"name": "enum",
|
|
295
|
+
"computed": true,
|
|
296
|
+
"value": "shapeProps"
|
|
297
|
+
},
|
|
298
|
+
"required": false
|
|
299
|
+
},
|
|
300
|
+
"labelSize": {
|
|
301
|
+
"description": "",
|
|
302
|
+
"type": {
|
|
303
|
+
"name": "enum",
|
|
304
|
+
"computed": true,
|
|
305
|
+
"value": "sizeProps"
|
|
306
|
+
},
|
|
307
|
+
"required": false
|
|
308
|
+
},
|
|
309
|
+
"labelSizeDesktop": {
|
|
310
|
+
"description": "",
|
|
311
|
+
"type": {
|
|
312
|
+
"name": "enum",
|
|
313
|
+
"computed": true,
|
|
314
|
+
"value": "sizeProps"
|
|
315
|
+
},
|
|
316
|
+
"required": false
|
|
317
|
+
},
|
|
318
|
+
"labelSizeMobile": {
|
|
319
|
+
"description": "",
|
|
320
|
+
"type": {
|
|
321
|
+
"name": "enum",
|
|
322
|
+
"computed": true,
|
|
323
|
+
"value": "sizeProps"
|
|
324
|
+
},
|
|
325
|
+
"required": false
|
|
326
|
+
},
|
|
327
|
+
"labelSizeTablet": {
|
|
328
|
+
"description": "",
|
|
329
|
+
"type": {
|
|
330
|
+
"name": "enum",
|
|
331
|
+
"computed": true,
|
|
332
|
+
"value": "sizeProps"
|
|
333
|
+
},
|
|
334
|
+
"required": false
|
|
335
|
+
},
|
|
336
|
+
"size": {
|
|
337
|
+
"description": "",
|
|
338
|
+
"type": {
|
|
339
|
+
"name": "enum",
|
|
340
|
+
"computed": true,
|
|
341
|
+
"value": "sizeProps"
|
|
342
|
+
},
|
|
343
|
+
"required": false
|
|
344
|
+
},
|
|
345
|
+
"sizeDesktop": {
|
|
346
|
+
"description": "",
|
|
347
|
+
"type": {
|
|
348
|
+
"name": "enum",
|
|
349
|
+
"computed": true,
|
|
350
|
+
"value": "sizeProps"
|
|
351
|
+
},
|
|
352
|
+
"required": false
|
|
353
|
+
},
|
|
354
|
+
"sizeMobile": {
|
|
355
|
+
"description": "",
|
|
356
|
+
"type": {
|
|
357
|
+
"name": "enum",
|
|
358
|
+
"computed": true,
|
|
359
|
+
"value": "sizeProps"
|
|
360
|
+
},
|
|
361
|
+
"required": false
|
|
362
|
+
},
|
|
363
|
+
"sizeTablet": {
|
|
364
|
+
"description": "",
|
|
365
|
+
"type": {
|
|
366
|
+
"name": "enum",
|
|
367
|
+
"computed": true,
|
|
368
|
+
"value": "sizeProps"
|
|
369
|
+
},
|
|
370
|
+
"required": false
|
|
371
|
+
},
|
|
372
|
+
"type": {
|
|
373
|
+
"description": "",
|
|
374
|
+
"type": {
|
|
375
|
+
"name": "string"
|
|
376
|
+
},
|
|
377
|
+
"required": false
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
};
|
|
134
381
|
|
|
135
382
|
exports.Chips = Chips;
|
|
136
383
|
exports.chipsConfig = chipsConfig;
|
|
@@ -109,5 +109,65 @@ Choice.propTypes = {
|
|
|
109
109
|
Choice.defaultProps = {
|
|
110
110
|
active: {}
|
|
111
111
|
};
|
|
112
|
+
Choice.__docgenInfo = {
|
|
113
|
+
"description": "",
|
|
114
|
+
"methods": [],
|
|
115
|
+
"displayName": "Choice",
|
|
116
|
+
"props": {
|
|
117
|
+
"active": {
|
|
118
|
+
"defaultValue": {
|
|
119
|
+
"value": "{}",
|
|
120
|
+
"computed": false
|
|
121
|
+
},
|
|
122
|
+
"description": "",
|
|
123
|
+
"type": {
|
|
124
|
+
"name": "object"
|
|
125
|
+
},
|
|
126
|
+
"required": false
|
|
127
|
+
},
|
|
128
|
+
"className": {
|
|
129
|
+
"description": "",
|
|
130
|
+
"type": {
|
|
131
|
+
"name": "string"
|
|
132
|
+
},
|
|
133
|
+
"required": false
|
|
134
|
+
},
|
|
135
|
+
"fill": {
|
|
136
|
+
"description": "",
|
|
137
|
+
"type": {
|
|
138
|
+
"name": "string"
|
|
139
|
+
},
|
|
140
|
+
"required": false
|
|
141
|
+
},
|
|
142
|
+
"name": {
|
|
143
|
+
"description": "",
|
|
144
|
+
"type": {
|
|
145
|
+
"name": "string"
|
|
146
|
+
},
|
|
147
|
+
"required": false
|
|
148
|
+
},
|
|
149
|
+
"options": {
|
|
150
|
+
"description": "",
|
|
151
|
+
"type": {
|
|
152
|
+
"name": "array"
|
|
153
|
+
},
|
|
154
|
+
"required": false
|
|
155
|
+
},
|
|
156
|
+
"setActiveSegment": {
|
|
157
|
+
"description": "",
|
|
158
|
+
"type": {
|
|
159
|
+
"name": "func"
|
|
160
|
+
},
|
|
161
|
+
"required": false
|
|
162
|
+
},
|
|
163
|
+
"type": {
|
|
164
|
+
"description": "",
|
|
165
|
+
"type": {
|
|
166
|
+
"name": "string"
|
|
167
|
+
},
|
|
168
|
+
"required": false
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
};
|
|
112
172
|
|
|
113
173
|
exports.Choice = Choice;
|