trand_common_v1 0.1.94 → 0.1.95
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.
|
@@ -1132,9 +1132,9 @@ export type AdministratorUpdate = {
|
|
|
1132
1132
|
aid: string;
|
|
1133
1133
|
} & Partial<Omit<Administrator, "aid">>;
|
|
1134
1134
|
export type FormFieldProps = {
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1135
|
+
id: string;
|
|
1136
|
+
label: string;
|
|
1137
|
+
is_required: boolean;
|
|
1138
|
+
max_length?: number;
|
|
1139
|
+
placeholder?: string;
|
|
1140
1140
|
};
|