@evoke-platform/context 1.5.0-dev.5 → 1.5.0-dev.7
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.
- package/dist/objects/objects.d.ts +11 -11
- package/package.json +1 -1
|
@@ -48,21 +48,21 @@ export type TableViewLayout = {
|
|
|
48
48
|
properties: PropertyReference[];
|
|
49
49
|
sort?: Sort;
|
|
50
50
|
};
|
|
51
|
-
export type
|
|
52
|
-
entries?:
|
|
51
|
+
export type PanelViewSection = {
|
|
52
|
+
entries?: PanelViewEntry[];
|
|
53
53
|
};
|
|
54
|
-
export type
|
|
55
|
-
sections:
|
|
54
|
+
export type PanelViewSections = {
|
|
55
|
+
sections: PanelViewSection[];
|
|
56
56
|
};
|
|
57
|
-
export type
|
|
58
|
-
entries?:
|
|
57
|
+
export type PanelViewColumn = {
|
|
58
|
+
entries?: PanelViewEntry[];
|
|
59
59
|
};
|
|
60
|
-
export type
|
|
61
|
-
columns:
|
|
60
|
+
export type PanelViewColumns = {
|
|
61
|
+
columns: PanelViewColumn[];
|
|
62
62
|
};
|
|
63
|
-
export type
|
|
63
|
+
export type PanelViewEntry = ReadonlyField | PanelViewSections | PanelViewColumns | Content;
|
|
64
64
|
export type PanelViewLayout = {
|
|
65
|
-
entries:
|
|
65
|
+
entries: PanelViewEntry[];
|
|
66
66
|
};
|
|
67
67
|
export type PropertyReference = {
|
|
68
68
|
id: string;
|
|
@@ -87,7 +87,7 @@ export type Obj = {
|
|
|
87
87
|
export type ObjWithRoot = Obj & {
|
|
88
88
|
rootObjectId: string;
|
|
89
89
|
};
|
|
90
|
-
export type PropertyType = 'address' | 'array' | 'boolean' | 'collection' | 'criteria' | 'date' | 'date-time' | 'document' | 'image' | 'integer' | 'number' | 'object' | 'richText' | 'string' | 'time' | 'user';
|
|
90
|
+
export type PropertyType = 'address' | 'array' | 'boolean' | 'collection' | 'criteria' | 'date' | 'date-time' | 'document' | 'fileContent' | 'image' | 'integer' | 'number' | 'object' | 'richText' | 'string' | 'time' | 'user';
|
|
91
91
|
export type NumericValidation = {
|
|
92
92
|
errorMessage?: string;
|
|
93
93
|
minimum?: number;
|