mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
123 lines
4.1 KiB
TypeScript
123 lines
4.1 KiB
TypeScript
import * as React from "react";
|
|
import * as ReactDOM from "react-dom";
|
|
|
|
import {
|
|
Calendar,
|
|
Combobox,
|
|
DateTimePicker,
|
|
DropdownList,
|
|
Multiselect,
|
|
NumberPicker,
|
|
SelectList
|
|
} from "react-widgets";
|
|
|
|
function tagComponent(props: { value: string }) {
|
|
return <span>{props.value}</span>;
|
|
}
|
|
|
|
function itemComponent(props: { value: string }) {
|
|
return <span>{props.value}</span>;
|
|
}
|
|
|
|
function listComponent(props: { value: string }) {
|
|
return <span>{props.value}</span>;
|
|
}
|
|
|
|
class Test extends React.Component<React.Props<{}>> {
|
|
render() {
|
|
return (
|
|
<div>
|
|
<div>
|
|
<Calendar />
|
|
<Combobox />
|
|
<DateTimePicker />
|
|
<DropdownList />
|
|
<Multiselect />
|
|
<NumberPicker />
|
|
<SelectList />
|
|
</div>
|
|
<div>
|
|
<Calendar defaultValue={new Date()} />
|
|
<Combobox defaultValue={"foo"} />
|
|
<DateTimePicker defaultValue={new Date()} />
|
|
<DropdownList defaultValue={"foo"} />
|
|
<Multiselect defaultValue={["foo"]} />
|
|
<NumberPicker defaultValue={1} />
|
|
<SelectList defaultValue={"foo"} />
|
|
</div>
|
|
<div>
|
|
<Multiselect
|
|
tagComponent={tagComponent}
|
|
itemComponent={itemComponent}
|
|
/>
|
|
<Combobox
|
|
itemComponent={itemComponent}
|
|
listComponent={listComponent}
|
|
/>
|
|
<DropdownList
|
|
itemComponent={itemComponent}
|
|
listComponent={listComponent}
|
|
/>
|
|
<Multiselect listComponent={listComponent} />
|
|
<SelectList listComponent={listComponent} />
|
|
</div>
|
|
<div>
|
|
<Calendar disabled readOnly />
|
|
<Combobox
|
|
disabled
|
|
readOnly
|
|
dropUp
|
|
placeholder={"Some text"}
|
|
/>
|
|
<DateTimePicker disabled readOnly dropUp />
|
|
<DropdownList disabled readOnly dropUp />
|
|
<Multiselect disabled readOnly dropUp />
|
|
<NumberPicker disabled readOnly />
|
|
<SelectList disabled readOnly />
|
|
</div>
|
|
<div>
|
|
<Calendar
|
|
autoFocus
|
|
defaultValue={new Date()}
|
|
defaultView="year"
|
|
views={["year", "decade"]}
|
|
/>
|
|
<Combobox autoFocus delay={300} name="box" />
|
|
<Combobox
|
|
busy
|
|
busySpinner={<span className="fas fa-sync fa-spin" />}
|
|
/>
|
|
<DateTimePicker autoFocus open="date" />
|
|
<DropdownList
|
|
autoFocus
|
|
delay={350}
|
|
name="list"
|
|
multiple={false}
|
|
/>
|
|
<DropdownList containerClassName="list-items" />
|
|
<Multiselect autoFocus allowCreate />
|
|
<Multiselect containerClassName="multiselect-container" />
|
|
<NumberPicker
|
|
autoFocus
|
|
name="numbers"
|
|
placeholder="hello"
|
|
/>
|
|
<SelectList
|
|
autoFocus
|
|
delay={400}
|
|
tabIndex={-1}
|
|
name="list"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<DateTimePicker
|
|
dropUp={true}
|
|
containerClassName="d-flex"
|
|
timeIcon={<i className="fa fa-clock" />}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|