cloud-ide-lms-model 1.0.37 → 1.0.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2,7 +2,7 @@ import { IEntityErrorLogger } from "../model/core/entity";
|
|
|
2
2
|
/** @description Label placement like fiexd which will be at same position if vale is there or not, floting will move if vale is set or removed */
|
|
3
3
|
export type labelPlacementType = 'floating' | 'fixed';
|
|
4
4
|
/** @description type of control */
|
|
5
|
-
export type controlType = "date" | "datetime-local" | "email" | "month" | "number" | "password" | "search" | "tel" | "text" | "time" | "url" | "week" | "checkbox" | "";
|
|
5
|
+
export type controlType = "date" | "datetime-local" | "email" | "month" | "number" | "password" | "search" | "tel" | "text" | "time" | "url" | "week" | "checkbox" | "select" | "";
|
|
6
6
|
/** @description Input Type allowed to set value */
|
|
7
7
|
export type inputType = number | string | undefined | null | boolean;
|
|
8
8
|
/** @description Lable direction from start of contrl or end of control */
|