mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
feat(web/input): support default values (#66)
* feat(web/dialog): Support placeholders * feat(web/dialog): Support default values * feat(web/dialog): Support default state of checkbox * feat(web/dialog): Support placeholder for number input * feat(web/dialog): Support default value for select
This commit is contained in:
@@ -5,6 +5,9 @@ type RowType = "input" | "checkbox" | "select" | "number";
|
||||
export interface Row {
|
||||
type: RowType;
|
||||
label: string;
|
||||
placeholder?: string;
|
||||
default?: string | number;
|
||||
checked?: boolean;
|
||||
options?: { value: string; label?: string }[];
|
||||
password?: boolean;
|
||||
icon?: IconProp;
|
||||
|
||||
Reference in New Issue
Block a user