pict-section-recordset 1.0.0 → 1.0.2
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/.vscode/launch.json +46 -0
- package/debug/Harness.js +0 -7
- package/example_applications/ServeExamples.js +1 -1
- package/example_applications/mocks/book-edit-view.html +145 -0
- package/example_applications/mocks/book-read-view.html +139 -0
- package/example_applications/mocks/list-view.html +125 -0
- package/example_applications/simple_entity/Simple-RecordSet-Application.js +33 -27
- package/example_applications/simple_entity/html/index.html +3 -3
- package/package.json +12 -8
- package/source/Pict-Section-RecordSet.js +6 -2
- package/source/application/Pict-Application-RecordSet.js +23 -4
- package/source/providers/RecordSet-RecordProvider-Base.js +217 -0
- package/source/providers/RecordSet-RecordProvider-MeadowEndpoints.js +339 -0
- package/source/providers/RecordSet-Router.js +64 -0
- package/source/services/RecordsSet-MetaController.js +268 -0
- package/source/views/RecordSet-Filter.js +91 -0
- package/source/views/RecordSet-RecordBaseView.js +84 -0
- package/source/views/RecordsSet-MacroView.js +63 -0
- package/source/views/dashboard/RecordSet-Dashboard-HeaderDashboard.js +63 -0
- package/source/views/dashboard/RecordSet-Dashboard-RecordSetDashboard.js +63 -0
- package/source/views/dashboard/RecordSet-Dashboard-TabBarDashboard.js +63 -0
- package/source/views/dashboard/RecordSet-Dashboard.js +63 -0
- package/source/views/edit/RecordSet-Edit-HeaderEdit.js +63 -0
- package/source/views/edit/RecordSet-Edit-RecordEdit.js +63 -0
- package/source/views/edit/RecordSet-Edit-RecordEditControls.js +63 -0
- package/source/views/edit/RecordSet-Edit-RecordEditExtra.js +63 -0
- package/source/views/edit/RecordSet-Edit-TabBarEdit.js +63 -0
- package/source/views/edit/RecordSet-Edit.js +63 -0
- package/source/views/list/RecordSet-List-HeaderList.js +63 -0
- package/source/views/list/RecordSet-List-PaginationBottom.js +67 -0
- package/source/views/list/RecordSet-List-PaginationTop.js +127 -0
- package/source/views/list/RecordSet-List-RecordList.js +79 -0
- package/source/views/list/RecordSet-List-RecordListEntry.js +86 -0
- package/source/views/list/RecordSet-List-RecordListHeader.js +77 -0
- package/source/views/list/RecordSet-List-Title.js +66 -0
- package/source/views/list/RecordSet-List.js +310 -0
- package/source/views/read/RecordSet-Read-HeaderRead.js +63 -0
- package/source/views/read/RecordSet-Read-RecordRead.js +63 -0
- package/source/views/read/RecordSet-Read-RecordReadExtra.js +63 -0
- package/source/views/read/RecordSet-Read-TabBarRead.js +63 -0
- package/source/views/read/RecordSet-Read.js +162 -0
- package/test/PictSectionRecordSet-Basic_tests.js +6 -2
- package/test/PictSectionRecordSet-RecordProvider-Meadow_tests.js +203 -0
- package/tsconfig.build.json +16 -0
- package/tsconfig.json +1 -1
- package/types/Pict-Section-RecordSet.d.ts +9 -1
- package/types/application/Pict-Application-RecordSet.d.ts +5 -5
- package/types/application/Pict-Application-RecordSet.d.ts.map +1 -1
- package/types/providers/RecordSet-RecordProvider-Base.d.ts +207 -0
- package/types/providers/RecordSet-RecordProvider-Base.d.ts.map +1 -1
- package/types/providers/RecordSet-RecordProvider-MeadowEndpoints.d.ts +100 -0
- package/types/providers/RecordSet-RecordProvider-MeadowEndpoints.d.ts.map +1 -0
- package/types/providers/RecordSet-Router.d.ts +36 -0
- package/types/providers/RecordSet-Router.d.ts.map +1 -0
- package/types/services/RecordsSet-MetaController.d.ts +36 -0
- package/types/services/RecordsSet-MetaController.d.ts.map +1 -0
- package/types/views/RecordSet-Filter.d.ts +34 -0
- package/types/views/RecordSet-Filter.d.ts.map +1 -0
- package/types/views/RecordSet-RecordBaseView.d.ts +49 -0
- package/types/views/RecordSet-RecordBaseView.d.ts.map +1 -0
- package/types/views/RecordsSet-MacroView.d.ts +34 -0
- package/types/views/RecordsSet-MacroView.d.ts.map +1 -0
- package/types/views/dashboard/RecordSet-Dashboard-HeaderDashboard.d.ts +34 -0
- package/types/views/dashboard/RecordSet-Dashboard-HeaderDashboard.d.ts.map +1 -0
- package/types/views/dashboard/RecordSet-Dashboard-RecordSetDashboard.d.ts +34 -0
- package/types/views/dashboard/RecordSet-Dashboard-RecordSetDashboard.d.ts.map +1 -0
- package/types/views/dashboard/RecordSet-Dashboard-TabBarDashboard.d.ts +34 -0
- package/types/views/dashboard/RecordSet-Dashboard-TabBarDashboard.d.ts.map +1 -0
- package/types/views/dashboard/RecordSet-Dashboard.d.ts +33 -0
- package/types/views/dashboard/RecordSet-Dashboard.d.ts.map +1 -0
- package/types/views/edit/RecordSet-Edit-HeaderEdit.d.ts +34 -0
- package/types/views/edit/RecordSet-Edit-HeaderEdit.d.ts.map +1 -0
- package/types/views/edit/RecordSet-Edit-RecordEdit.d.ts +34 -0
- package/types/views/edit/RecordSet-Edit-RecordEdit.d.ts.map +1 -0
- package/types/views/edit/RecordSet-Edit-RecordEditControls.d.ts +34 -0
- package/types/views/edit/RecordSet-Edit-RecordEditControls.d.ts.map +1 -0
- package/types/views/edit/RecordSet-Edit-RecordEditExtra.d.ts +34 -0
- package/types/views/edit/RecordSet-Edit-RecordEditExtra.d.ts.map +1 -0
- package/types/views/edit/RecordSet-Edit-TabBarEdit.d.ts +34 -0
- package/types/views/edit/RecordSet-Edit-TabBarEdit.d.ts.map +1 -0
- package/types/views/edit/RecordSet-Edit.d.ts +33 -0
- package/types/views/edit/RecordSet-Edit.d.ts.map +1 -0
- package/types/views/list/RecordSet-List-HeaderList.d.ts +34 -0
- package/types/views/list/RecordSet-List-HeaderList.d.ts.map +1 -0
- package/types/views/list/RecordSet-List-PaginationBottom.d.ts +34 -0
- package/types/views/list/RecordSet-List-PaginationBottom.d.ts.map +1 -0
- package/types/views/list/RecordSet-List-PaginationTop.d.ts +34 -0
- package/types/views/list/RecordSet-List-PaginationTop.d.ts.map +1 -0
- package/types/views/list/RecordSet-List-RecordList.d.ts +34 -0
- package/types/views/list/RecordSet-List-RecordList.d.ts.map +1 -0
- package/types/views/list/RecordSet-List-RecordListEntry.d.ts +34 -0
- package/types/views/list/RecordSet-List-RecordListEntry.d.ts.map +1 -0
- package/types/views/list/RecordSet-List-RecordListHeader.d.ts +34 -0
- package/types/views/list/RecordSet-List-RecordListHeader.d.ts.map +1 -0
- package/types/views/list/RecordSet-List-Title.d.ts +34 -0
- package/types/views/list/RecordSet-List-Title.d.ts.map +1 -0
- package/types/views/list/RecordSet-List.d.ts +47 -0
- package/types/views/list/RecordSet-List.d.ts.map +1 -0
- package/types/views/read/RecordSet-Read-HeaderRead.d.ts +34 -0
- package/types/views/read/RecordSet-Read-HeaderRead.d.ts.map +1 -0
- package/types/views/read/RecordSet-Read-RecordRead.d.ts +34 -0
- package/types/views/read/RecordSet-Read-RecordRead.d.ts.map +1 -0
- package/types/views/read/RecordSet-Read-RecordReadExtra.d.ts +34 -0
- package/types/views/read/RecordSet-Read-RecordReadExtra.d.ts.map +1 -0
- package/types/views/read/RecordSet-Read-TabBarRead.d.ts +34 -0
- package/types/views/read/RecordSet-Read-TabBarRead.d.ts.map +1 -0
- package/types/views/read/RecordSet-Read.d.ts +44 -0
- package/types/views/read/RecordSet-Read.d.ts.map +1 -0
|
@@ -1 +1,208 @@
|
|
|
1
|
+
export = RecordSetProviderBase;
|
|
2
|
+
/**
|
|
3
|
+
* @typedef {Object} RecordSetSearchRangeFacet
|
|
4
|
+
* @property {string} Field - The field to facet on. Only indexed fields can be faceted.
|
|
5
|
+
* @property {any} Start - The start of the range. (ex. 1900)
|
|
6
|
+
* @property {any} End - The end of the range. (ex. 2025)
|
|
7
|
+
* @property {any} Gap - The gap between range values. (ex. 25)
|
|
8
|
+
* TODO: Support auto-generating ranges based on the data at rest?
|
|
9
|
+
*/
|
|
10
|
+
/**
|
|
11
|
+
* @typedef {Object} RecordSetSearchFacetPayload
|
|
12
|
+
* @property {boolean} [ReturnRecords] - If false, search will return facets only, not records.
|
|
13
|
+
* @property {Array<string>} Fields - Requests to facet on all unique values of the given fields.
|
|
14
|
+
* @property {Array<RecordSetSearchRangeFacet>} Ranges - Requests to facet on given ranges of field values.
|
|
15
|
+
* TODO: support facet on custom query?
|
|
16
|
+
*/
|
|
17
|
+
/**
|
|
18
|
+
* @typedef {Object} RecordSetResult
|
|
19
|
+
* @property {Array<Record<string, any>>} Records - The records returned from the provider.
|
|
20
|
+
* @property {Record<string, Record<string, number>> & { ByRange?: Record<string, number> }} Facets - The facets returned from the provider.
|
|
21
|
+
*/
|
|
22
|
+
/**
|
|
23
|
+
* @typedef {Object} RecordSetFilter
|
|
24
|
+
* @property {string} [Entity] - The entity name. Can be used as an override to achieve LiteExtended, etc.
|
|
25
|
+
* @property {string} [FilterString] - A meadow endpoint style filter to apply.
|
|
26
|
+
* @property {number} [Offset] - The starting record number for pagination.
|
|
27
|
+
* @property {number} [PageSize] - The starting record number for pagination.
|
|
28
|
+
* @property {RecordSetSearchFacetPayload} [Facets] - The faceting config for the search.
|
|
29
|
+
*/
|
|
30
|
+
/**
|
|
31
|
+
* Base record set provider.
|
|
32
|
+
* @extends libPictProvider
|
|
33
|
+
*/
|
|
34
|
+
declare class RecordSetProviderBase {
|
|
35
|
+
/**
|
|
36
|
+
* Creates an instance of RecordSetProvider.
|
|
37
|
+
* @param {import('fable')} pFable - The Fable object.
|
|
38
|
+
* @param {Record<string, any>} [pOptions] - Custom options for the provider.
|
|
39
|
+
* @param {string} [pServiceHash] - The service hash.
|
|
40
|
+
*/
|
|
41
|
+
constructor(pFable: any, pOptions?: Record<string, any>, pServiceHash?: string);
|
|
42
|
+
/** @type {Record<string, any>} */
|
|
43
|
+
options: Record<string, any>;
|
|
44
|
+
/** @type {import('fable')} */
|
|
45
|
+
fable: any;
|
|
46
|
+
/** @type {import('pict')} */
|
|
47
|
+
pict: import("pict");
|
|
48
|
+
/**
|
|
49
|
+
* Get a record by its ID or GUID.
|
|
50
|
+
*
|
|
51
|
+
* @param {string|number} pIDOrGuid - The ID or GUID of the record.
|
|
52
|
+
*/
|
|
53
|
+
getRecord(pIDOrGuid: string | number): Promise<{}>;
|
|
54
|
+
/**
|
|
55
|
+
* Get a record by its ID or GUID.
|
|
56
|
+
*
|
|
57
|
+
* @param {string|number} pGuid - The ID or GUID of the record.
|
|
58
|
+
*/
|
|
59
|
+
getRecordByGUID(pGuid: string | number): Promise<{}>;
|
|
60
|
+
/**
|
|
61
|
+
* Read records from the provider.
|
|
62
|
+
*
|
|
63
|
+
* @param {RecordSetFilter} pOptions - Options for the read operation.
|
|
64
|
+
* @return {Promise<RecordSetResult>} - The result of the read operation.
|
|
65
|
+
*/
|
|
66
|
+
getRecords(pOptions: RecordSetFilter): Promise<RecordSetResult>;
|
|
67
|
+
/**
|
|
68
|
+
* Read records from the provider.
|
|
69
|
+
*
|
|
70
|
+
* @param {string} [pFilterString] - The filter string to apply.
|
|
71
|
+
* @param {number} [pOffset] - The starting record number for pagination.
|
|
72
|
+
* @param {number} [pPageSize] - The number of records to return.
|
|
73
|
+
* @return {Promise<RecordSetResult>} - The result of the read operation.
|
|
74
|
+
*/
|
|
75
|
+
getRecordsInline(pFilterString?: string, pOffset?: number, pPageSize?: number): Promise<RecordSetResult>;
|
|
76
|
+
/**
|
|
77
|
+
* Read records from the provider.
|
|
78
|
+
*
|
|
79
|
+
* @param {RecordSetFilter} pOptions - Options for the read operation.
|
|
80
|
+
*/
|
|
81
|
+
getRecordSetCount(pOptions: RecordSetFilter): Promise<{
|
|
82
|
+
Count: number;
|
|
83
|
+
}>;
|
|
84
|
+
/**
|
|
85
|
+
* Create a new record.
|
|
86
|
+
*
|
|
87
|
+
* @param {Record<string, any>} pRecord - The record to create.
|
|
88
|
+
*/
|
|
89
|
+
createRecord(pRecord: Record<string, any>): Promise<Record<string, any>>;
|
|
90
|
+
/**
|
|
91
|
+
* Update a record.
|
|
92
|
+
*
|
|
93
|
+
* @param {Record<string, any>} pRecord - The record to update.
|
|
94
|
+
*/
|
|
95
|
+
updateRecord(pRecord: Record<string, any>): Promise<Record<string, any>>;
|
|
96
|
+
/**
|
|
97
|
+
* Delete a record.
|
|
98
|
+
*
|
|
99
|
+
* @param {Record<string, any>} pRecord - The record to delete.
|
|
100
|
+
*/
|
|
101
|
+
deleteRecord(pRecord: Record<string, any>): Promise<void>;
|
|
102
|
+
/**
|
|
103
|
+
* Read a record.
|
|
104
|
+
*
|
|
105
|
+
* @param {string|number} pIDOrGuid - The ID or GUID of the record.
|
|
106
|
+
*/
|
|
107
|
+
readRecord(pIDOrGuid: string | number): Promise<{}>;
|
|
108
|
+
/**
|
|
109
|
+
* Read records from the provider.
|
|
110
|
+
*
|
|
111
|
+
* @param {RecordSetFilter} pOptions - Options for the read operation.
|
|
112
|
+
* @return {Promise<RecordSetResult>} - The result of the read operation.
|
|
113
|
+
*/
|
|
114
|
+
readRecords(pOptions: RecordSetFilter): Promise<RecordSetResult>;
|
|
115
|
+
/**
|
|
116
|
+
* Clone a record.
|
|
117
|
+
*
|
|
118
|
+
* @param {Record<string, any>} pRecord - The record to clone.
|
|
119
|
+
*/
|
|
120
|
+
cloneRecord(pRecord: Record<string, any>): Promise<Record<string, any>>;
|
|
121
|
+
/**
|
|
122
|
+
* Remove any intrinsic identifiers from a record.
|
|
123
|
+
*
|
|
124
|
+
* @param {Record<string, any>} pRecord - The record to clean.
|
|
125
|
+
*/
|
|
126
|
+
cleanRecord(pRecord: Record<string, any>): Record<string, any>;
|
|
127
|
+
/**
|
|
128
|
+
* @return {Record<string, any>} The schema of the record.
|
|
129
|
+
*/
|
|
130
|
+
get recordSchema(): Record<string, any>;
|
|
131
|
+
}
|
|
132
|
+
declare namespace RecordSetProviderBase {
|
|
133
|
+
export { _DefaultProviderConfiguration as default_configuration, RecordSetSearchRangeFacet, RecordSetSearchFacetPayload, RecordSetResult, RecordSetFilter };
|
|
134
|
+
}
|
|
135
|
+
/**
|
|
136
|
+
* Default configuration for the RecordSetProvider provider.
|
|
137
|
+
* @type {Record<string, any>}
|
|
138
|
+
*/
|
|
139
|
+
declare const _DefaultProviderConfiguration: Record<string, any>;
|
|
140
|
+
type RecordSetSearchRangeFacet = {
|
|
141
|
+
/**
|
|
142
|
+
* - The field to facet on. Only indexed fields can be faceted.
|
|
143
|
+
*/
|
|
144
|
+
Field: string;
|
|
145
|
+
/**
|
|
146
|
+
* - The start of the range. (ex. 1900)
|
|
147
|
+
*/
|
|
148
|
+
Start: any;
|
|
149
|
+
/**
|
|
150
|
+
* - The end of the range. (ex. 2025)
|
|
151
|
+
*/
|
|
152
|
+
End: any;
|
|
153
|
+
/**
|
|
154
|
+
* - The gap between range values. (ex. 25)
|
|
155
|
+
* TODO: Support auto-generating ranges based on the data at rest?
|
|
156
|
+
*/
|
|
157
|
+
Gap: any;
|
|
158
|
+
};
|
|
159
|
+
type RecordSetSearchFacetPayload = {
|
|
160
|
+
/**
|
|
161
|
+
* - If false, search will return facets only, not records.
|
|
162
|
+
*/
|
|
163
|
+
ReturnRecords?: boolean;
|
|
164
|
+
/**
|
|
165
|
+
* - Requests to facet on all unique values of the given fields.
|
|
166
|
+
*/
|
|
167
|
+
Fields: Array<string>;
|
|
168
|
+
/**
|
|
169
|
+
* - Requests to facet on given ranges of field values.
|
|
170
|
+
* TODO: support facet on custom query?
|
|
171
|
+
*/
|
|
172
|
+
Ranges: Array<RecordSetSearchRangeFacet>;
|
|
173
|
+
};
|
|
174
|
+
type RecordSetResult = {
|
|
175
|
+
/**
|
|
176
|
+
* - The records returned from the provider.
|
|
177
|
+
*/
|
|
178
|
+
Records: Array<Record<string, any>>;
|
|
179
|
+
/**
|
|
180
|
+
* - The facets returned from the provider.
|
|
181
|
+
*/
|
|
182
|
+
Facets: Record<string, Record<string, number>> & {
|
|
183
|
+
ByRange?: Record<string, number>;
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
type RecordSetFilter = {
|
|
187
|
+
/**
|
|
188
|
+
* - The entity name. Can be used as an override to achieve LiteExtended, etc.
|
|
189
|
+
*/
|
|
190
|
+
Entity?: string;
|
|
191
|
+
/**
|
|
192
|
+
* - A meadow endpoint style filter to apply.
|
|
193
|
+
*/
|
|
194
|
+
FilterString?: string;
|
|
195
|
+
/**
|
|
196
|
+
* - The starting record number for pagination.
|
|
197
|
+
*/
|
|
198
|
+
Offset?: number;
|
|
199
|
+
/**
|
|
200
|
+
* - The starting record number for pagination.
|
|
201
|
+
*/
|
|
202
|
+
PageSize?: number;
|
|
203
|
+
/**
|
|
204
|
+
* - The faceting config for the search.
|
|
205
|
+
*/
|
|
206
|
+
Facets?: RecordSetSearchFacetPayload;
|
|
207
|
+
};
|
|
1
208
|
//# sourceMappingURL=RecordSet-RecordProvider-Base.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-RecordProvider-Base.d.ts","sourceRoot":"","sources":["../../source/providers/RecordSet-RecordProvider-Base.js"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"RecordSet-RecordProvider-Base.d.ts","sourceRoot":"","sources":["../../source/providers/RecordSet-RecordProvider-Base.js"],"names":[],"mappings":";AAcA;;;;;;;GAOG;AAEH;;;;;;GAMG;AAEH;;;;GAIG;AAEH;;;;;;;GAOG;AAEH;;;GAGG;AACH;IAEC;;;;;OAKG;IACH,oCAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,iBACnB,MAAM,EAchB;IANA,kCAAkC;IAClC,SADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAClB;IACZ,8BAA8B;IAC9B,WAAU;IACV,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IAGV;;;;OAIG;IACH,qBAFW,MAAM,GAAC,MAAM,eAMvB;IAED;;;;OAIG;IACH,uBAFW,MAAM,GAAC,MAAM,eAMvB;IAED;;;;;OAKG;IACH,qBAHW,eAAe,GACd,OAAO,CAAC,eAAe,CAAC,CAMnC;IAED;;;;;;;OAOG;IACH,iCALW,MAAM,YACN,MAAM,cACN,MAAM,GACL,OAAO,CAAC,eAAe,CAAC,CAMnC;IAED;;;;OAIG;IACH,4BAFW,eAAe;;OAMzB;IAED;;;;OAIG;IACH,sBAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,gCAM7B;IAED;;;;OAIG;IACH,sBAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,gCAM7B;IAED;;;;OAIG;IACH,sBAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,iBAK7B;IAED;;;;OAIG;IACH,sBAFW,MAAM,GAAC,MAAM,eAMvB;IAED;;;;;OAKG;IACH,sBAHW,eAAe,GACd,OAAO,CAAC,eAAe,CAAC,CAMnC;IAED;;;;OAIG;IACH,qBAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,gCAK7B;IAED;;;;OAIG;IACH,qBAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,uBAK7B;IAED;;OAEG;IACH,oBAFY,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAK9B;CACD;;;;AAlND;;;GAGG;AACH,6CAFU,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAO3B;;;;;WAIY,MAAM;;;;WACN,GAAG;;;;SACH,GAAG;;;;;SACH,GAAG;;;;;;oBAMH,OAAO;;;;YACP,KAAK,CAAC,MAAM,CAAC;;;;;YACb,KAAK,CAAC,yBAAyB,CAAC;;;;;;aAMhC,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;;;;YAC1B,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,GAAG;QAAE,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;KAAE;;;;;;aAK7E,MAAM;;;;mBACN,MAAM;;;;aACN,MAAM;;;;eACN,MAAM;;;;aACN,2BAA2B"}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
export = RecordSetProvider;
|
|
2
|
+
/**
|
|
3
|
+
* @typedef {(error?: Error, result?: any) => void} RestClientCallback
|
|
4
|
+
*
|
|
5
|
+
* @typedef {import('./RecordSet-RecordProvider-Base.js').RecordSetFilter} RecordSetFilter
|
|
6
|
+
* @typedef {import('./RecordSet-RecordProvider-Base.js').RecordSetResult} RecordSetResult
|
|
7
|
+
*
|
|
8
|
+
* @typedef {{
|
|
9
|
+
* getJSON(pOptionsOrURL: string | Record<string, any>, fCallback: RestClientCallback): void,
|
|
10
|
+
* putJSON(pOptions: Record<string, any>, fCallback: RestClientCallback): void,
|
|
11
|
+
* postJSON(pOptions: Record<string, any>, fCallback: RestClientCallback): void,
|
|
12
|
+
* patchJSON(pOptions: Record<string, any>, fCallback: RestClientCallback): void,
|
|
13
|
+
* headJSON(pOptions: Record<string, any>, fCallback: RestClientCallback): void,
|
|
14
|
+
* delJSON(pOptions: Record<string, any>, fCallback: RestClientCallback): void,
|
|
15
|
+
* getRawText(pOptionsOrURL: string | Record<string, any>, fCallback: RestClientCallback): void,
|
|
16
|
+
* }} RestClient
|
|
17
|
+
*/
|
|
18
|
+
/**
|
|
19
|
+
* Class representing a data change detection provider for Pict dynamic forms.
|
|
20
|
+
* @extends libRecordSetProviderBase
|
|
21
|
+
*/
|
|
22
|
+
declare class RecordSetProvider extends libRecordSetProviderBase {
|
|
23
|
+
/** @type {RestClient} */
|
|
24
|
+
restClient: RestClient;
|
|
25
|
+
/** @type {Record<string, any>} */
|
|
26
|
+
_Schema: Record<string, any>;
|
|
27
|
+
/**
|
|
28
|
+
* @typedef {(error?: Error, result?: T) => void} RecordSetCallback
|
|
29
|
+
* @template T = Record<string, any>
|
|
30
|
+
*/
|
|
31
|
+
/**
|
|
32
|
+
* Get a record by its ID or GUID.
|
|
33
|
+
*
|
|
34
|
+
* @param {string|number} pIDOrGuid - The ID or GUID of the record.
|
|
35
|
+
*/
|
|
36
|
+
getRecord(pIDOrGuid: string | number): Promise<any>;
|
|
37
|
+
/**
|
|
38
|
+
* Get a record by its ID or GUID.
|
|
39
|
+
*
|
|
40
|
+
* @param {string|number} pGuid - The ID or GUID of the record.
|
|
41
|
+
*/
|
|
42
|
+
getRecordByGUID(pGuid: string | number): Promise<any>;
|
|
43
|
+
/**
|
|
44
|
+
* Read records from the provider.
|
|
45
|
+
*
|
|
46
|
+
* @param {RecordSetFilter} pOptions - Options for the read operation.
|
|
47
|
+
*/
|
|
48
|
+
getRecordSetCount(pOptions: RecordSetFilter): Promise<any>;
|
|
49
|
+
/**
|
|
50
|
+
* Create a new record.
|
|
51
|
+
*
|
|
52
|
+
* @param {Record<string, any>} pRecord - The record to create.
|
|
53
|
+
*/
|
|
54
|
+
createRecord(pRecord: Record<string, any>): Promise<any>;
|
|
55
|
+
/**
|
|
56
|
+
* Update a record.
|
|
57
|
+
*
|
|
58
|
+
* @param {Record<string, any>} pRecord - The record to update.
|
|
59
|
+
*/
|
|
60
|
+
updateRecord(pRecord: Record<string, any>): Promise<any>;
|
|
61
|
+
/**
|
|
62
|
+
* Delete a record.
|
|
63
|
+
*
|
|
64
|
+
* @param {Record<string, any>} pRecord - The record to delete.
|
|
65
|
+
*/
|
|
66
|
+
deleteRecord(pRecord: Record<string, any>): Promise<any>;
|
|
67
|
+
/**
|
|
68
|
+
* Read a record.
|
|
69
|
+
*
|
|
70
|
+
* @param {string|number} pIDOrGuid - The ID or GUID of the record.
|
|
71
|
+
*/
|
|
72
|
+
readRecord(pIDOrGuid: string | number): Promise<any>;
|
|
73
|
+
/**
|
|
74
|
+
* Clone a record.
|
|
75
|
+
*
|
|
76
|
+
* @param {Record<string, any>} pRecord - The record to clone.
|
|
77
|
+
*/
|
|
78
|
+
cloneRecord(pRecord: Record<string, any>): Promise<any>;
|
|
79
|
+
/**
|
|
80
|
+
* @param {(error?: Error) => void} fCallback - The callback function.
|
|
81
|
+
*/
|
|
82
|
+
onInitializeAsync(fCallback: (error?: Error) => void): void;
|
|
83
|
+
}
|
|
84
|
+
declare namespace RecordSetProvider {
|
|
85
|
+
export { RestClientCallback, RecordSetFilter, RecordSetResult, RestClient };
|
|
86
|
+
}
|
|
87
|
+
import libRecordSetProviderBase = require("./RecordSet-RecordProvider-Base.js");
|
|
88
|
+
type RestClientCallback = (error?: Error, result?: any) => void;
|
|
89
|
+
type RecordSetFilter = import("./RecordSet-RecordProvider-Base.js").RecordSetFilter;
|
|
90
|
+
type RecordSetResult = import("./RecordSet-RecordProvider-Base.js").RecordSetResult;
|
|
91
|
+
type RestClient = {
|
|
92
|
+
getJSON(pOptionsOrURL: string | Record<string, any>, fCallback: RestClientCallback): void;
|
|
93
|
+
putJSON(pOptions: Record<string, any>, fCallback: RestClientCallback): void;
|
|
94
|
+
postJSON(pOptions: Record<string, any>, fCallback: RestClientCallback): void;
|
|
95
|
+
patchJSON(pOptions: Record<string, any>, fCallback: RestClientCallback): void;
|
|
96
|
+
headJSON(pOptions: Record<string, any>, fCallback: RestClientCallback): void;
|
|
97
|
+
delJSON(pOptions: Record<string, any>, fCallback: RestClientCallback): void;
|
|
98
|
+
getRawText(pOptionsOrURL: string | Record<string, any>, fCallback: RestClientCallback): void;
|
|
99
|
+
};
|
|
100
|
+
//# sourceMappingURL=RecordSet-RecordProvider-MeadowEndpoints.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-RecordProvider-MeadowEndpoints.d.ts","sourceRoot":"","sources":["../../source/providers/RecordSet-RecordProvider-MeadowEndpoints.js"],"names":[],"mappings":";AAGA;;;;;;;;;;;;;;;GAeG;AAEH;;;GAGG;AACH;IAYE,yBAAyB;IACzB,YADW,UAAU,CACN;IAQf,kCAAkC;IAClC,SADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CACZ;IAGnB;;;OAGG;IAEH;;;;OAIG;IACH,qBAFW,MAAM,GAAC,MAAM,gBA2BvB;IAED;;;;OAIG;IACH,uBAFW,MAAM,GAAC,MAAM,gBAuBvB;IA+CD;;;;OAIG;IACH,4BAFW,eAAe,gBAyBzB;IAED;;;;OAIG;IACH,sBAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,gBAsB7B;IAED;;;;OAIG;IACH,sBAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,gBAsB7B;IAED;;;;OAIG;IACH,sBAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,gBAsB7B;IAED;;;;OAIG;IACH,sBAFW,MAAM,GAAC,MAAM,gBAKvB;IAaD;;;;OAIG;IACH,qBAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,gBAK7B;IAcD;;OAEG;IACH,6BAFW,CAAC,KAAK,CAAC,EAAE,KAAK,KAAK,IAAI,QAgBjC;CAMD;;;;;0BA5UY,CAAC,KAAK,CAAC,EAAE,KAAK,EAAE,MAAM,CAAC,EAAE,GAAG,KAAK,IAAI;uBAErC,OAAO,oCAAoC,EAAE,eAAe;uBAC5D,OAAO,oCAAoC,EAAE,eAAe;kBAE5D;IACT,OAAO,CAAC,aAAa,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,SAAS,EAAE,kBAAkB,GAAG,IAAI,CAAC;IAC1F,OAAO,CAAC,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,SAAS,EAAE,kBAAkB,GAAG,IAAI,CAAC;IAC5E,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,SAAS,EAAE,kBAAkB,GAAG,IAAI,CAAC;IAC7E,SAAS,CAAC,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,SAAS,EAAE,kBAAkB,GAAG,IAAI,CAAC;IAC9E,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,SAAS,EAAE,kBAAkB,GAAG,IAAI,CAAC;IAC7E,OAAO,CAAC,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,SAAS,EAAE,kBAAkB,GAAG,IAAI,CAAC;IAC5E,UAAU,CAAC,aAAa,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,SAAS,EAAE,kBAAkB,GAAG,IAAI,CAAC;CAC7F"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export = PictRecordSetRouter;
|
|
2
|
+
declare class PictRecordSetRouter {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
/** @type {Record<string, any>} */
|
|
5
|
+
options: Record<string, any>;
|
|
6
|
+
/** @type {import('pict') & { PictSectionRecordSet: InstanceType<import('../Pict-Section-RecordSet.js')> }} */
|
|
7
|
+
pict: import("pict") & {
|
|
8
|
+
PictSectionRecordSet: InstanceType<{
|
|
9
|
+
new (pFable: any, pOptions: any, pServiceHash: any): import("../services/RecordsSet-MetaController.js");
|
|
10
|
+
default_configuration: {
|
|
11
|
+
DefaultMeadowURLPrefix: string;
|
|
12
|
+
};
|
|
13
|
+
PictRecordSetApplication: typeof import("../application/Pict-Application-RecordSet.js");
|
|
14
|
+
RecordSetProviderBase: typeof import("./RecordSet-RecordProvider-Base.js");
|
|
15
|
+
RecordSetProviderMeadowEndpoints: typeof import("./RecordSet-RecordProvider-MeadowEndpoints.js");
|
|
16
|
+
}>;
|
|
17
|
+
};
|
|
18
|
+
pictRouter: any;
|
|
19
|
+
onInitialize(): any;
|
|
20
|
+
addRoutes(pRouter: any): void;
|
|
21
|
+
/**
|
|
22
|
+
* Navigate to a given route (set the browser URL string, add to history, trigger router)
|
|
23
|
+
*
|
|
24
|
+
* @param {string} pRoute - The route to navigate to
|
|
25
|
+
*/
|
|
26
|
+
navigate(pRoute: string): void;
|
|
27
|
+
}
|
|
28
|
+
declare namespace PictRecordSetRouter {
|
|
29
|
+
export { _DEFAULT_PROVIDER_CONFIGURATION as default_configuration };
|
|
30
|
+
}
|
|
31
|
+
declare namespace _DEFAULT_PROVIDER_CONFIGURATION {
|
|
32
|
+
let ProviderIdentifier: string;
|
|
33
|
+
let AutoInitialize: boolean;
|
|
34
|
+
let AutoInitializeOrdinal: number;
|
|
35
|
+
}
|
|
36
|
+
//# sourceMappingURL=RecordSet-Router.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-Router.d.ts","sourceRoot":"","sources":["../../source/providers/RecordSet-Router.js"],"names":[],"mappings":";AAWA;IAEC,2DAWC;IANA,kCAAkC;IAClC,SADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAClB;IACZ,8GAA8G;IAC9G,MADW,OAAO,MAAM,CAAC,GAAG;QAAE,oBAAoB,EAAE,YAAY,CAAC;;;;;;;;SAAsC,CAAC,CAAA;KAAE,CACjG;IAET,gBAAsB;IAGvB,oBAWC;IAED,8BAUC;IAED;;;;OAIG;IACH,iBAFW,MAAM,QAKhB;CACD"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export = RecordSetMetacontroller;
|
|
2
|
+
declare class RecordSetMetacontroller {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
/** @type {import('pict') & { addAndInstantiateSingletonService: (hash: string, options: any, prototype: any) => any }} */
|
|
5
|
+
fable: import("pict") & {
|
|
6
|
+
addAndInstantiateSingletonService: (hash: string, options: any, prototype: any) => any;
|
|
7
|
+
};
|
|
8
|
+
/** @type {any} */
|
|
9
|
+
log: any;
|
|
10
|
+
/** @type {any} */
|
|
11
|
+
options: any;
|
|
12
|
+
/** @type {string} */
|
|
13
|
+
UUID: string;
|
|
14
|
+
childViews: {
|
|
15
|
+
list: any;
|
|
16
|
+
edit: any;
|
|
17
|
+
read: any;
|
|
18
|
+
dashboard: any;
|
|
19
|
+
};
|
|
20
|
+
recordSetProviders: {};
|
|
21
|
+
recordSetProviderConfigurations: {};
|
|
22
|
+
has_initialized: boolean;
|
|
23
|
+
loadRecordSetConfiguration(pRecordSetConfiguration: any): boolean;
|
|
24
|
+
loadRecordSetConfigurationArray(pRecordSetConfigurationArray: any): boolean;
|
|
25
|
+
loadRecordSetDynamcally(pRecordSet: any, pEntity: any, pDefaultFilter: any): any;
|
|
26
|
+
handleLoadDynamicRecordSetRoute(pRoutePayload: any): any;
|
|
27
|
+
addRoutes(pPictRouter: any): boolean;
|
|
28
|
+
initialize(): true | this;
|
|
29
|
+
}
|
|
30
|
+
declare namespace RecordSetMetacontroller {
|
|
31
|
+
export { _DEFAULT_CONFIGURATION as default_configuration };
|
|
32
|
+
}
|
|
33
|
+
declare namespace _DEFAULT_CONFIGURATION {
|
|
34
|
+
let DefaultMeadowURLPrefix: string;
|
|
35
|
+
}
|
|
36
|
+
//# sourceMappingURL=RecordsSet-MetaController.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordsSet-MetaController.d.ts","sourceRoot":"","sources":["../../source/services/RecordsSet-MetaController.js"],"names":[],"mappings":";AAkBA;IAEC,2DAyBC;IApBA,0HAA0H;IAC1H,OADW,OAAO,MAAM,CAAC,GAAG;QAAE,iCAAiC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,SAAS,EAAE,GAAG,KAAK,GAAG,CAAA;KAAE,CAC5G;IACV,kBAAkB;IAClB,KADW,GAAG,CACN;IACR,kBAAkB;IAClB,SADW,GAAG,CACF;IACZ,qBAAqB;IACrB,MADW,MAAM,CACR;IAET;;;;;MAKC;IAED,uBAA4B;IAC5B,oCAAyC;IAEzC,yBAA4B;IA6B7B,kEAiEC;IAED,4EAmBC;IAED,iFAyCC;IAED,yDAaC;IAED,qCAMC;IAED,0BAmCC;CACD"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export = viewRecordSetSUBSETFilter;
|
|
2
|
+
declare class viewRecordSetSUBSETFilter extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
}
|
|
5
|
+
declare namespace viewRecordSetSUBSETFilter {
|
|
6
|
+
export { _DEFAULT_CONFIGURATION_SUBSET_Filter as default_configuration };
|
|
7
|
+
}
|
|
8
|
+
import libPictView = require("pict-view");
|
|
9
|
+
declare namespace _DEFAULT_CONFIGURATION_SUBSET_Filter {
|
|
10
|
+
let ViewIdentifier: string;
|
|
11
|
+
let DefaultRenderable: string;
|
|
12
|
+
let DefaultDestinationAddress: string;
|
|
13
|
+
let DefaultTemplateRecordAddress: boolean;
|
|
14
|
+
let AutoInitialize: boolean;
|
|
15
|
+
let AutoInitializeOrdinal: number;
|
|
16
|
+
let AutoRender: boolean;
|
|
17
|
+
let AutoRenderOrdinal: number;
|
|
18
|
+
let AutoSolveWithApp: boolean;
|
|
19
|
+
let AutoSolveOrdinal: number;
|
|
20
|
+
let CSS: boolean;
|
|
21
|
+
let CSSPriority: number;
|
|
22
|
+
let Templates: {
|
|
23
|
+
Hash: string;
|
|
24
|
+
Template: string;
|
|
25
|
+
}[];
|
|
26
|
+
let Renderables: {
|
|
27
|
+
RenderableHash: string;
|
|
28
|
+
TemplateHash: string;
|
|
29
|
+
DestinationAddress: string;
|
|
30
|
+
RenderMethod: string;
|
|
31
|
+
}[];
|
|
32
|
+
let Manifests: {};
|
|
33
|
+
}
|
|
34
|
+
//# sourceMappingURL=RecordSet-Filter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-Filter.d.ts","sourceRoot":"","sources":["../../source/views/RecordSet-Filter.js"],"names":[],"mappings":";AA8EA;IAEE,2DAIC;CACF"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
export = viewPictSectionRecordSetViewBase;
|
|
2
|
+
declare class viewPictSectionRecordSetViewBase extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
/** @type {import('pict') & { log: any, instantiateServiceProviderWithoutRegistration: (hash: String) => any, PictSectionRecordSet: InstanceType<import('../Pict-Section-RecordSet.js') }} */
|
|
5
|
+
pict: import("pict") & {
|
|
6
|
+
log: any;
|
|
7
|
+
instantiateServiceProviderWithoutRegistration: (hash: string) => any;
|
|
8
|
+
PictSectionRecordSet: InstanceType<{
|
|
9
|
+
new (pFable: any, pOptions: any, pServiceHash: any): import("../services/RecordsSet-MetaController.js");
|
|
10
|
+
default_configuration: {
|
|
11
|
+
DefaultMeadowURLPrefix: string;
|
|
12
|
+
};
|
|
13
|
+
PictRecordSetApplication: typeof import("../application/Pict-Application-RecordSet.js");
|
|
14
|
+
RecordSetProviderBase: typeof import("../providers/RecordSet-RecordProvider-Base.js");
|
|
15
|
+
RecordSetProviderMeadowEndpoints: typeof import("../providers/RecordSet-RecordProvider-MeadowEndpoints.js");
|
|
16
|
+
}>;
|
|
17
|
+
};
|
|
18
|
+
addRoutes(pPictRouter: any): boolean;
|
|
19
|
+
}
|
|
20
|
+
declare namespace viewPictSectionRecordSetViewBase {
|
|
21
|
+
export { _DEFAULT_CONFIGURATION_Base_View as default_configuration };
|
|
22
|
+
}
|
|
23
|
+
import libPictView = require("pict-view");
|
|
24
|
+
declare namespace _DEFAULT_CONFIGURATION_Base_View {
|
|
25
|
+
let ViewIdentifier: string;
|
|
26
|
+
let DefaultRenderable: string;
|
|
27
|
+
let DefaultDestinationAddress: string;
|
|
28
|
+
let DefaultTemplateRecordAddress: boolean;
|
|
29
|
+
let AutoInitialize: boolean;
|
|
30
|
+
let AutoInitializeOrdinal: number;
|
|
31
|
+
let AutoRender: boolean;
|
|
32
|
+
let AutoRenderOrdinal: number;
|
|
33
|
+
let AutoSolveWithApp: boolean;
|
|
34
|
+
let AutoSolveOrdinal: number;
|
|
35
|
+
let CSS: boolean;
|
|
36
|
+
let CSSPriority: number;
|
|
37
|
+
let Templates: {
|
|
38
|
+
Hash: string;
|
|
39
|
+
Template: string;
|
|
40
|
+
}[];
|
|
41
|
+
let Renderables: {
|
|
42
|
+
RenderableHash: string;
|
|
43
|
+
TemplateHash: string;
|
|
44
|
+
DestinationAddress: string;
|
|
45
|
+
RenderMethod: string;
|
|
46
|
+
}[];
|
|
47
|
+
let Manifests: {};
|
|
48
|
+
}
|
|
49
|
+
//# sourceMappingURL=RecordSet-RecordBaseView.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-RecordBaseView.d.ts","sourceRoot":"","sources":["../../source/views/RecordSet-RecordBaseView.js"],"names":[],"mappings":";AA4DA;IAEC,2DAMC;IAFA,6LAA6L;IAC7L,MADW,OAAO,MAAM,CAAC,GAAG;QAAE,GAAG,EAAE,GAAG,CAAC;QAAC,6CAA6C,EAAE,CAAC,IAAI,QAAQ,KAAK,GAAG,CAAC;QAAC,oBAAoB,EAAE,YAAY,CAAC;;;;;;;;SAAsC,CAAA,CAAA;KAAE,CAChL;IAGV,qCAIC;CACD"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export = viewPictSectionRecordSetMain;
|
|
2
|
+
declare class viewPictSectionRecordSetMain extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
}
|
|
5
|
+
declare namespace viewPictSectionRecordSetMain {
|
|
6
|
+
export { _DEFAULT_CONFIGURATION_Dashboard_HeaderDashboard as default_configuration };
|
|
7
|
+
}
|
|
8
|
+
import libPictView = require("pict-view");
|
|
9
|
+
declare namespace _DEFAULT_CONFIGURATION_Dashboard_HeaderDashboard {
|
|
10
|
+
let ViewIdentifier: string;
|
|
11
|
+
let DefaultRenderable: string;
|
|
12
|
+
let DefaultDestinationAddress: string;
|
|
13
|
+
let DefaultTemplateRecordAddress: boolean;
|
|
14
|
+
let AutoInitialize: boolean;
|
|
15
|
+
let AutoInitializeOrdinal: number;
|
|
16
|
+
let AutoRender: boolean;
|
|
17
|
+
let AutoRenderOrdinal: number;
|
|
18
|
+
let AutoSolveWithApp: boolean;
|
|
19
|
+
let AutoSolveOrdinal: number;
|
|
20
|
+
let CSS: boolean;
|
|
21
|
+
let CSSPriority: number;
|
|
22
|
+
let Templates: {
|
|
23
|
+
Hash: string;
|
|
24
|
+
Template: string;
|
|
25
|
+
}[];
|
|
26
|
+
let Renderables: {
|
|
27
|
+
RenderableHash: string;
|
|
28
|
+
TemplateHash: string;
|
|
29
|
+
DestinationAddress: string;
|
|
30
|
+
RenderMethod: string;
|
|
31
|
+
}[];
|
|
32
|
+
let Manifests: {};
|
|
33
|
+
}
|
|
34
|
+
//# sourceMappingURL=RecordsSet-MacroView.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordsSet-MacroView.d.ts","sourceRoot":"","sources":["../../source/views/RecordsSet-MacroView.js"],"names":[],"mappings":";AAkDA;IAEC,2DAIC;CACD"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export = viewRecordSetDashboardHeaderDashboard;
|
|
2
|
+
declare class viewRecordSetDashboardHeaderDashboard extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
}
|
|
5
|
+
declare namespace viewRecordSetDashboardHeaderDashboard {
|
|
6
|
+
export { _DEFAULT_CONFIGURATION_Dashboard_HeaderDashboard as default_configuration };
|
|
7
|
+
}
|
|
8
|
+
import libPictView = require("pict-view");
|
|
9
|
+
declare namespace _DEFAULT_CONFIGURATION_Dashboard_HeaderDashboard {
|
|
10
|
+
let ViewIdentifier: string;
|
|
11
|
+
let DefaultRenderable: string;
|
|
12
|
+
let DefaultDestinationAddress: string;
|
|
13
|
+
let DefaultTemplateRecordAddress: boolean;
|
|
14
|
+
let AutoInitialize: boolean;
|
|
15
|
+
let AutoInitializeOrdinal: number;
|
|
16
|
+
let AutoRender: boolean;
|
|
17
|
+
let AutoRenderOrdinal: number;
|
|
18
|
+
let AutoSolveWithApp: boolean;
|
|
19
|
+
let AutoSolveOrdinal: number;
|
|
20
|
+
let CSS: boolean;
|
|
21
|
+
let CSSPriority: number;
|
|
22
|
+
let Templates: {
|
|
23
|
+
Hash: string;
|
|
24
|
+
Template: string;
|
|
25
|
+
}[];
|
|
26
|
+
let Renderables: {
|
|
27
|
+
RenderableHash: string;
|
|
28
|
+
TemplateHash: string;
|
|
29
|
+
DestinationAddress: string;
|
|
30
|
+
RenderMethod: string;
|
|
31
|
+
}[];
|
|
32
|
+
let Manifests: {};
|
|
33
|
+
}
|
|
34
|
+
//# sourceMappingURL=RecordSet-Dashboard-HeaderDashboard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-Dashboard-HeaderDashboard.d.ts","sourceRoot":"","sources":["../../../source/views/dashboard/RecordSet-Dashboard-HeaderDashboard.js"],"names":[],"mappings":";AAkDA;IAEE,2DAIC;CACF"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export = viewRecordSetDashboardRecordSetDashboard;
|
|
2
|
+
declare class viewRecordSetDashboardRecordSetDashboard extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
}
|
|
5
|
+
declare namespace viewRecordSetDashboardRecordSetDashboard {
|
|
6
|
+
export { _DEFAULT_CONFIGURATION_Dashboard_RecordSetDashboard as default_configuration };
|
|
7
|
+
}
|
|
8
|
+
import libPictView = require("pict-view");
|
|
9
|
+
declare namespace _DEFAULT_CONFIGURATION_Dashboard_RecordSetDashboard {
|
|
10
|
+
let ViewIdentifier: string;
|
|
11
|
+
let DefaultRenderable: string;
|
|
12
|
+
let DefaultDestinationAddress: string;
|
|
13
|
+
let DefaultTemplateRecordAddress: boolean;
|
|
14
|
+
let AutoInitialize: boolean;
|
|
15
|
+
let AutoInitializeOrdinal: number;
|
|
16
|
+
let AutoRender: boolean;
|
|
17
|
+
let AutoRenderOrdinal: number;
|
|
18
|
+
let AutoSolveWithApp: boolean;
|
|
19
|
+
let AutoSolveOrdinal: number;
|
|
20
|
+
let CSS: boolean;
|
|
21
|
+
let CSSPriority: number;
|
|
22
|
+
let Templates: {
|
|
23
|
+
Hash: string;
|
|
24
|
+
Template: string;
|
|
25
|
+
}[];
|
|
26
|
+
let Renderables: {
|
|
27
|
+
RenderableHash: string;
|
|
28
|
+
TemplateHash: string;
|
|
29
|
+
DestinationAddress: string;
|
|
30
|
+
RenderMethod: string;
|
|
31
|
+
}[];
|
|
32
|
+
let Manifests: {};
|
|
33
|
+
}
|
|
34
|
+
//# sourceMappingURL=RecordSet-Dashboard-RecordSetDashboard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-Dashboard-RecordSetDashboard.d.ts","sourceRoot":"","sources":["../../../source/views/dashboard/RecordSet-Dashboard-RecordSetDashboard.js"],"names":[],"mappings":";AAkDA;IAEE,2DAIC;CACF"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export = viewRecordSetDashboardTabBarDashboard;
|
|
2
|
+
declare class viewRecordSetDashboardTabBarDashboard extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
}
|
|
5
|
+
declare namespace viewRecordSetDashboardTabBarDashboard {
|
|
6
|
+
export { _DEFAULT_CONFIGURATION_Dashboard_TabBarDashboard as default_configuration };
|
|
7
|
+
}
|
|
8
|
+
import libPictView = require("pict-view");
|
|
9
|
+
declare namespace _DEFAULT_CONFIGURATION_Dashboard_TabBarDashboard {
|
|
10
|
+
let ViewIdentifier: string;
|
|
11
|
+
let DefaultRenderable: string;
|
|
12
|
+
let DefaultDestinationAddress: string;
|
|
13
|
+
let DefaultTemplateRecordAddress: boolean;
|
|
14
|
+
let AutoInitialize: boolean;
|
|
15
|
+
let AutoInitializeOrdinal: number;
|
|
16
|
+
let AutoRender: boolean;
|
|
17
|
+
let AutoRenderOrdinal: number;
|
|
18
|
+
let AutoSolveWithApp: boolean;
|
|
19
|
+
let AutoSolveOrdinal: number;
|
|
20
|
+
let CSS: boolean;
|
|
21
|
+
let CSSPriority: number;
|
|
22
|
+
let Templates: {
|
|
23
|
+
Hash: string;
|
|
24
|
+
Template: string;
|
|
25
|
+
}[];
|
|
26
|
+
let Renderables: {
|
|
27
|
+
RenderableHash: string;
|
|
28
|
+
TemplateHash: string;
|
|
29
|
+
DestinationAddress: string;
|
|
30
|
+
RenderMethod: string;
|
|
31
|
+
}[];
|
|
32
|
+
let Manifests: {};
|
|
33
|
+
}
|
|
34
|
+
//# sourceMappingURL=RecordSet-Dashboard-TabBarDashboard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-Dashboard-TabBarDashboard.d.ts","sourceRoot":"","sources":["../../../source/views/dashboard/RecordSet-Dashboard-TabBarDashboard.js"],"names":[],"mappings":";AAkDA;IAEE,2DAIC;CACF"}
|