We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 90469ea + 34ebbd8 commit 4ce4504Copy full SHA for 4ce4504
adminforth/types/Common.ts
@@ -813,9 +813,6 @@ export interface AdminForthResourceColumnInputCommon {
813
*/
814
minLength?: number,
815
816
- min?: number,
817
- max?: number,
818
-
819
/**
820
* Minimum value that can be entered in this field.
821
@@ -881,6 +878,15 @@ export interface AdminForthResourceColumnCommon extends AdminForthResourceColumn
881
878
882
879
editingNote?: { create?: string, edit?: string },
883
880
+ /**
+ * Minimal value stored in this field.
+ */
884
+ min?: number,
885
+
886
887
+ * Maximum value stored in this field.
888
889
+ max?: number,
890
}
891
892
export enum AdminForthMenuTypes {
0 commit comments