Skip to content

Commit dade607

Browse files
authored
Improved features (#78)
* Allow additional attributes for react-select * React depreaction warning fixed * React creatable fied without dropdown indicator and menu (mimics input field) * Optimization * 0.4.5
1 parent 07643c7 commit dade607

6 files changed

Lines changed: 2133 additions & 1186 deletions

File tree

demo/src/schema/all-available-fields.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,21 @@ export default {
7979
formGroupClass: "form-group mb-4",
8080
validation: [['array'], ['of', [['string']]]]
8181
},
82+
reactSelectCreatableMulti: {
83+
type: "field",
84+
renderer: "react-select",
85+
name: "react-select-multi",
86+
label: "React Select Creatable Multi",
87+
isMulti: true,
88+
isCreatable: true,
89+
options: [],
90+
menuIsOpen: false,
91+
components: {
92+
DropdownIndicator: null
93+
},
94+
formGroupClass: "form-group mb-4",
95+
validation: [['array'], ['of', [['string']]]]
96+
},
8297
textarea: {
8398
name: "description",
8499
label: "Description",

0 commit comments

Comments
 (0)