Skip to content

Commit e702c36

Browse files
authored
Add missing select props (#85)
1 parent 5e9407c commit e702c36

File tree

1 file changed

+47
-1
lines changed

1 file changed

+47
-1
lines changed

scripts/generateWrappers/consts.js

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,53 @@ const Vivid3ComponentsExtraPropertiesMap = {
335335
name: 'value',
336336
type: { text: 'string' }
337337
}
338-
]
338+
],
339+
Select: [
340+
{
341+
name: 'disabled',
342+
type: { text: 'boolean | undefined' }
343+
},
344+
{
345+
name: 'errorText',
346+
type: { text: 'string | undefined' }
347+
},
348+
{
349+
name: 'helperText',
350+
type: { text: 'string | undefined' }
351+
},
352+
{
353+
name: 'icon',
354+
type: { text: 'string | undefined' }
355+
},
356+
{
357+
name: 'iconTrailing',
358+
type: { text: 'boolean | undefined' }
359+
},
360+
{
361+
name: 'initialValue',
362+
type: { text: 'string | undefined' }
363+
},
364+
{
365+
name: 'label',
366+
type: { text: 'string | undefined' }
367+
},
368+
{
369+
name: 'name',
370+
type: { text: 'string | undefined' }
371+
},
372+
{
373+
name: 'required',
374+
type: { text: 'boolean | undefined' }
375+
},
376+
{
377+
name: 'successText',
378+
type: { text: 'string | undefined' }
379+
},
380+
{
381+
name: 'value',
382+
type: { text: 'string | undefined' }
383+
},
384+
],
339385
}
340386

341387
const CompoundComponentsMap = {

0 commit comments

Comments
 (0)