@enerex/template-studio 1.1.26 → 1.1.27
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.
|
@@ -6,13 +6,10 @@ export type HasId = {
|
|
|
6
6
|
export type HasName = {
|
|
7
7
|
name: string;
|
|
8
8
|
};
|
|
9
|
-
export type HasGroup = {
|
|
10
|
-
group?: string;
|
|
11
|
-
};
|
|
12
9
|
export type HasExternalId = {
|
|
13
10
|
externalId: string;
|
|
14
11
|
};
|
|
15
|
-
export type BasicEntity = HasId & HasName
|
|
12
|
+
export type BasicEntity = HasId & HasName;
|
|
16
13
|
interface SelectProps extends SelectHTMLAttributes<HTMLSelectElement> {
|
|
17
14
|
label?: string;
|
|
18
15
|
name: string;
|