diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..1b886ec --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,5 @@ +Meta-Info | Value +-- | -- +ExtProjectId | ??? +Original Estimation | ???h +Remaining Estimation | ???h diff --git a/src/client/components/Async/Async.DOCUMENTATION.md b/src/client/components/Async/Async.DOCUMENTATION.md index 9352c83..e96e1b8 100644 --- a/src/client/components/Async/Async.DOCUMENTATION.md +++ b/src/client/components/Async/Async.DOCUMENTATION.md @@ -24,6 +24,23 @@ See documentation of [react-select](https://github.com/JedWatson/react-select) } /> +
+ console.log(ref)} + loadOptions={ + (inputValue, callback) => { + setTimeout(() => { + callback([ + { value: 'one', label: 'One' }, + { value: 'two', label: 'Two' } + ].filter(item=>item.value === inputValue || item.label === inputValue)); + }, 1000); + } + } + isDisabled={true} + placeholder='Select isDisabled=true' + /> +
{ diff --git a/src/client/components/AsyncCreatable/AsyncCreatable.DOCUMENTATION.md b/src/client/components/AsyncCreatable/AsyncCreatable.DOCUMENTATION.md index 8590a11..836b57f 100644 --- a/src/client/components/AsyncCreatable/AsyncCreatable.DOCUMENTATION.md +++ b/src/client/components/AsyncCreatable/AsyncCreatable.DOCUMENTATION.md @@ -23,6 +23,23 @@ See documentation of [react-select](https://github.com/JedWatson/react-select) } /> +
+ console.log(ref)} + loadOptions={ + (inputValue, callback) => { + setTimeout(() => { + callback([ + { value: 'one', label: 'One' }, + { value: 'two', label: 'Two' } + ].filter(item=>item.value === inputValue || item.label === inputValue)); + }, 1000); + } + } + isDisabled={true} + placeholder='Select isDisabled=true' + /> +
{ diff --git a/src/client/components/Creatable/Creatable.DOCUMENTATION.md b/src/client/components/Creatable/Creatable.DOCUMENTATION.md index 36cc106..eb93b7f 100644 --- a/src/client/components/Creatable/Creatable.DOCUMENTATION.md +++ b/src/client/components/Creatable/Creatable.DOCUMENTATION.md @@ -21,6 +21,21 @@ See documentation of [react-select](https://github.com/JedWatson/react-select) ]} isMulti /> + +
+ console.log(ref)} + options={[ + { label: 'Chocolate', value: 'chocolate' }, + { label: 'Vanilla', value: 'vanilla' }, + { label: 'Strawberry', value: 'strawberry' }, + { label: 'Caramel', value: 'caramel' }, + { label: 'Cookies and Cream', value: 'cookiescream' }, + { label: 'Peppermint', value: 'peppermint' } + ]} + isDisabled={true} + placeholder='Select isDisabled=true' + />
+
+