feat(web/input): color input field

This commit is contained in:
Luke
2023-01-08 11:23:50 +01:00
parent a73d3e63da
commit 6c4485b570
3 changed files with 49 additions and 2 deletions

View File

@@ -51,3 +51,12 @@ export interface ISlider {
disabled?: boolean;
description?: string;
}
export interface IColorInput {
type: 'color';
label: string;
default?: string;
disabled?: boolean;
description?: string;
format?: 'hex' | 'hexa' | 'rgb' | 'rgba' | 'hsl' | 'hsla';
}