mirror of
https://github.com/flarum/framework.git
synced 2025-01-25 11:30:46 +08:00
b8754c7d7d
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
17 lines
698 B
TypeScript
17 lines
698 B
TypeScript
/**
|
|
* The `Select` component displays a <select> input, surrounded with some extra
|
|
* elements for styling. It accepts the following attrs:
|
|
*
|
|
* - `options` A map of option values to labels.
|
|
* - `onchange` A callback to run when the selected value is changed.
|
|
* - `value` The value of the selected option.
|
|
* - `disabled` Disabled state for the input.
|
|
* - `wrapperAttrs` A map of attrs to be passed to the DOM element wrapping the `<select>`
|
|
*
|
|
* Other attributes are passed directly to the `<select>` element rendered to the DOM.
|
|
*/
|
|
export default class Select extends Component<import("../Component").ComponentAttrs, undefined> {
|
|
constructor();
|
|
}
|
|
import Component from "../Component";
|