mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 15:06:02 +01:00
feat(web/input): multi-select row
This commit is contained in:
@@ -23,9 +23,9 @@ export interface ICheckbox {
|
||||
|
||||
export type OptionValue = { value: string; label?: string };
|
||||
export interface ISelect {
|
||||
type: 'select';
|
||||
type: 'select' | 'multi-select';
|
||||
label: string;
|
||||
default?: string;
|
||||
default?: string | string[];
|
||||
options: Array<OptionValue>;
|
||||
disabled?: boolean;
|
||||
description?: string;
|
||||
|
||||
Reference in New Issue
Block a user