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
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export = viewRecordSetDashboard;
|
|
2
|
+
declare class viewRecordSetDashboard extends libPictRecordSetRecordView {
|
|
3
|
+
}
|
|
4
|
+
declare namespace viewRecordSetDashboard {
|
|
5
|
+
export { _DEFAULT_CONFIGURATION__Dashboard as default_configuration };
|
|
6
|
+
}
|
|
7
|
+
import libPictRecordSetRecordView = require("../RecordSet-RecordBaseView.js");
|
|
8
|
+
declare namespace _DEFAULT_CONFIGURATION__Dashboard {
|
|
9
|
+
let ViewIdentifier: string;
|
|
10
|
+
let DefaultRenderable: string;
|
|
11
|
+
let DefaultDestinationAddress: string;
|
|
12
|
+
let DefaultTemplateRecordAddress: boolean;
|
|
13
|
+
let AutoInitialize: boolean;
|
|
14
|
+
let AutoInitializeOrdinal: number;
|
|
15
|
+
let AutoRender: boolean;
|
|
16
|
+
let AutoRenderOrdinal: number;
|
|
17
|
+
let AutoSolveWithApp: boolean;
|
|
18
|
+
let AutoSolveOrdinal: number;
|
|
19
|
+
let CSS: boolean;
|
|
20
|
+
let CSSPriority: number;
|
|
21
|
+
let Templates: {
|
|
22
|
+
Hash: string;
|
|
23
|
+
Template: string;
|
|
24
|
+
}[];
|
|
25
|
+
let Renderables: {
|
|
26
|
+
RenderableHash: string;
|
|
27
|
+
TemplateHash: string;
|
|
28
|
+
DestinationAddress: string;
|
|
29
|
+
RenderMethod: string;
|
|
30
|
+
}[];
|
|
31
|
+
let Manifests: {};
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=RecordSet-Dashboard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-Dashboard.d.ts","sourceRoot":"","sources":["../../../source/views/dashboard/RecordSet-Dashboard.js"],"names":[],"mappings":";AAkDA;CAOC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export = viewRecordSetEditHeaderEdit;
|
|
2
|
+
declare class viewRecordSetEditHeaderEdit extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
}
|
|
5
|
+
declare namespace viewRecordSetEditHeaderEdit {
|
|
6
|
+
export { _DEFAULT_CONFIGURATION_Edit_HeaderEdit as default_configuration };
|
|
7
|
+
}
|
|
8
|
+
import libPictView = require("pict-view");
|
|
9
|
+
declare namespace _DEFAULT_CONFIGURATION_Edit_HeaderEdit {
|
|
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-Edit-HeaderEdit.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-Edit-HeaderEdit.d.ts","sourceRoot":"","sources":["../../../source/views/edit/RecordSet-Edit-HeaderEdit.js"],"names":[],"mappings":";AAkDA;IAEE,2DAIC;CACF"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export = viewRecordSetEditRecordEdit;
|
|
2
|
+
declare class viewRecordSetEditRecordEdit extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
}
|
|
5
|
+
declare namespace viewRecordSetEditRecordEdit {
|
|
6
|
+
export { _DEFAULT_CONFIGURATION_Edit_RecordEdit as default_configuration };
|
|
7
|
+
}
|
|
8
|
+
import libPictView = require("pict-view");
|
|
9
|
+
declare namespace _DEFAULT_CONFIGURATION_Edit_RecordEdit {
|
|
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-Edit-RecordEdit.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-Edit-RecordEdit.d.ts","sourceRoot":"","sources":["../../../source/views/edit/RecordSet-Edit-RecordEdit.js"],"names":[],"mappings":";AAkDA;IAEE,2DAIC;CACF"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export = viewRecordSetEditRecordEditControls;
|
|
2
|
+
declare class viewRecordSetEditRecordEditControls extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
}
|
|
5
|
+
declare namespace viewRecordSetEditRecordEditControls {
|
|
6
|
+
export { _DEFAULT_CONFIGURATION_Edit_RecordEditControls as default_configuration };
|
|
7
|
+
}
|
|
8
|
+
import libPictView = require("pict-view");
|
|
9
|
+
declare namespace _DEFAULT_CONFIGURATION_Edit_RecordEditControls {
|
|
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-Edit-RecordEditControls.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-Edit-RecordEditControls.d.ts","sourceRoot":"","sources":["../../../source/views/edit/RecordSet-Edit-RecordEditControls.js"],"names":[],"mappings":";AAkDA;IAEE,2DAIC;CACF"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export = viewRecordSetEditRecordEditExtra;
|
|
2
|
+
declare class viewRecordSetEditRecordEditExtra extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
}
|
|
5
|
+
declare namespace viewRecordSetEditRecordEditExtra {
|
|
6
|
+
export { _DEFAULT_CONFIGURATION_Edit_RecordEditExtra as default_configuration };
|
|
7
|
+
}
|
|
8
|
+
import libPictView = require("pict-view");
|
|
9
|
+
declare namespace _DEFAULT_CONFIGURATION_Edit_RecordEditExtra {
|
|
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-Edit-RecordEditExtra.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-Edit-RecordEditExtra.d.ts","sourceRoot":"","sources":["../../../source/views/edit/RecordSet-Edit-RecordEditExtra.js"],"names":[],"mappings":";AAkDA;IAEE,2DAIC;CACF"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export = viewRecordSetEditTabBarEdit;
|
|
2
|
+
declare class viewRecordSetEditTabBarEdit extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
}
|
|
5
|
+
declare namespace viewRecordSetEditTabBarEdit {
|
|
6
|
+
export { _DEFAULT_CONFIGURATION_Edit_TabBarEdit as default_configuration };
|
|
7
|
+
}
|
|
8
|
+
import libPictView = require("pict-view");
|
|
9
|
+
declare namespace _DEFAULT_CONFIGURATION_Edit_TabBarEdit {
|
|
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-Edit-TabBarEdit.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-Edit-TabBarEdit.d.ts","sourceRoot":"","sources":["../../../source/views/edit/RecordSet-Edit-TabBarEdit.js"],"names":[],"mappings":";AAkDA;IAEE,2DAIC;CACF"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export = viewRecordSetEdit;
|
|
2
|
+
declare class viewRecordSetEdit extends libPictRecordSetRecordView {
|
|
3
|
+
}
|
|
4
|
+
declare namespace viewRecordSetEdit {
|
|
5
|
+
export { _DEFAULT_CONFIGURATION__Edit as default_configuration };
|
|
6
|
+
}
|
|
7
|
+
import libPictRecordSetRecordView = require("../RecordSet-RecordBaseView.js");
|
|
8
|
+
declare namespace _DEFAULT_CONFIGURATION__Edit {
|
|
9
|
+
let ViewIdentifier: string;
|
|
10
|
+
let DefaultRenderable: string;
|
|
11
|
+
let DefaultDestinationAddress: string;
|
|
12
|
+
let DefaultTemplateRecordAddress: boolean;
|
|
13
|
+
let AutoInitialize: boolean;
|
|
14
|
+
let AutoInitializeOrdinal: number;
|
|
15
|
+
let AutoRender: boolean;
|
|
16
|
+
let AutoRenderOrdinal: number;
|
|
17
|
+
let AutoSolveWithApp: boolean;
|
|
18
|
+
let AutoSolveOrdinal: number;
|
|
19
|
+
let CSS: boolean;
|
|
20
|
+
let CSSPriority: number;
|
|
21
|
+
let Templates: {
|
|
22
|
+
Hash: string;
|
|
23
|
+
Template: string;
|
|
24
|
+
}[];
|
|
25
|
+
let Renderables: {
|
|
26
|
+
RenderableHash: string;
|
|
27
|
+
TemplateHash: string;
|
|
28
|
+
DestinationAddress: string;
|
|
29
|
+
RenderMethod: string;
|
|
30
|
+
}[];
|
|
31
|
+
let Manifests: {};
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=RecordSet-Edit.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-Edit.d.ts","sourceRoot":"","sources":["../../../source/views/edit/RecordSet-Edit.js"],"names":[],"mappings":";AAkDA;CAOC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export = viewRecordSetListHeaderList;
|
|
2
|
+
declare class viewRecordSetListHeaderList extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
}
|
|
5
|
+
declare namespace viewRecordSetListHeaderList {
|
|
6
|
+
export { _DEFAULT_CONFIGURATION_List_HeaderList as default_configuration };
|
|
7
|
+
}
|
|
8
|
+
import libPictView = require("pict-view");
|
|
9
|
+
declare namespace _DEFAULT_CONFIGURATION_List_HeaderList {
|
|
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-List-HeaderList.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-List-HeaderList.d.ts","sourceRoot":"","sources":["../../../source/views/list/RecordSet-List-HeaderList.js"],"names":[],"mappings":";AAkDA;IAEE,2DAIC;CACF"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export = viewRecordSetListPaginationBottom;
|
|
2
|
+
declare class viewRecordSetListPaginationBottom extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
}
|
|
5
|
+
declare namespace viewRecordSetListPaginationBottom {
|
|
6
|
+
export { _DEFAULT_CONFIGURATION_List_PaginationBottom as default_configuration };
|
|
7
|
+
}
|
|
8
|
+
import libPictView = require("pict-view");
|
|
9
|
+
declare namespace _DEFAULT_CONFIGURATION_List_PaginationBottom {
|
|
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-List-PaginationBottom.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-List-PaginationBottom.d.ts","sourceRoot":"","sources":["../../../source/views/list/RecordSet-List-PaginationBottom.js"],"names":[],"mappings":";AAsDA;IAEC,2DAIC;CACD"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export = viewRecordSetListPaginationTop;
|
|
2
|
+
declare class viewRecordSetListPaginationTop extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
}
|
|
5
|
+
declare namespace viewRecordSetListPaginationTop {
|
|
6
|
+
export { _DEFAULT_CONFIGURATION_List_PaginationTop as default_configuration };
|
|
7
|
+
}
|
|
8
|
+
import libPictView = require("pict-view");
|
|
9
|
+
declare namespace _DEFAULT_CONFIGURATION_List_PaginationTop {
|
|
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-List-PaginationTop.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-List-PaginationTop.d.ts","sourceRoot":"","sources":["../../../source/views/list/RecordSet-List-PaginationTop.js"],"names":[],"mappings":";AAkHA;IAEC,2DAIC;CACD"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export = viewRecordSetListRecordList;
|
|
2
|
+
declare class viewRecordSetListRecordList extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
}
|
|
5
|
+
declare namespace viewRecordSetListRecordList {
|
|
6
|
+
export { _DEFAULT_CONFIGURATION_List_RecordList as default_configuration };
|
|
7
|
+
}
|
|
8
|
+
import libPictView = require("pict-view");
|
|
9
|
+
declare namespace _DEFAULT_CONFIGURATION_List_RecordList {
|
|
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-List-RecordList.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-List-RecordList.d.ts","sourceRoot":"","sources":["../../../source/views/list/RecordSet-List-RecordList.js"],"names":[],"mappings":";AAkEA;IAEE,2DAIC;CACF"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export = viewRecordSetListRecordListEntry;
|
|
2
|
+
declare class viewRecordSetListRecordListEntry extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
}
|
|
5
|
+
declare namespace viewRecordSetListRecordListEntry {
|
|
6
|
+
export { _DEFAULT_CONFIGURATION_List_RecordListEntry as default_configuration };
|
|
7
|
+
}
|
|
8
|
+
import libPictView = require("pict-view");
|
|
9
|
+
declare namespace _DEFAULT_CONFIGURATION_List_RecordListEntry {
|
|
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-List-RecordListEntry.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-List-RecordListEntry.d.ts","sourceRoot":"","sources":["../../../source/views/list/RecordSet-List-RecordListEntry.js"],"names":[],"mappings":";AAyEA;IAEE,2DAIC;CACF"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export = viewRecordSetListRecordListHeader;
|
|
2
|
+
declare class viewRecordSetListRecordListHeader extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
}
|
|
5
|
+
declare namespace viewRecordSetListRecordListHeader {
|
|
6
|
+
export { _DEFAULT_CONFIGURATION_List_RecordListHeader as default_configuration };
|
|
7
|
+
}
|
|
8
|
+
import libPictView = require("pict-view");
|
|
9
|
+
declare namespace _DEFAULT_CONFIGURATION_List_RecordListHeader {
|
|
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-List-RecordListHeader.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-List-RecordListHeader.d.ts","sourceRoot":"","sources":["../../../source/views/list/RecordSet-List-RecordListHeader.js"],"names":[],"mappings":";AAgEA;IAEE,2DAIC;CACF"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export = viewRecordSetListTitle;
|
|
2
|
+
declare class viewRecordSetListTitle extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
}
|
|
5
|
+
declare namespace viewRecordSetListTitle {
|
|
6
|
+
export { _DEFAULT_CONFIGURATION_List_Title as default_configuration };
|
|
7
|
+
}
|
|
8
|
+
import libPictView = require("pict-view");
|
|
9
|
+
declare namespace _DEFAULT_CONFIGURATION_List_Title {
|
|
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-List-Title.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-List-Title.d.ts","sourceRoot":"","sources":["../../../source/views/list/RecordSet-List-Title.js"],"names":[],"mappings":";AAsDA;IAEE,2DAIC;CACF"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
export = viewRecordSetList;
|
|
2
|
+
declare class viewRecordSetList extends libPictRecordSetRecordView {
|
|
3
|
+
childViews: {
|
|
4
|
+
headerList: any;
|
|
5
|
+
title: any;
|
|
6
|
+
paginationTop: any;
|
|
7
|
+
recordList: any;
|
|
8
|
+
recordListHeader: any;
|
|
9
|
+
recordListEntry: any;
|
|
10
|
+
paginationBottom: any;
|
|
11
|
+
};
|
|
12
|
+
handleRecordSetListRoute(pRoutePayload: any): Promise<boolean>;
|
|
13
|
+
onBeforeRenderList(pRecordListData: any): any;
|
|
14
|
+
formatDisplayData(pRecordListData: any): any;
|
|
15
|
+
excludedByDefaultCells: string[];
|
|
16
|
+
renderList(pRecordSetConfiguration: any, pProviderHash: any, pFilterString: any, pOffset: any, pPageSize: any): Promise<boolean>;
|
|
17
|
+
}
|
|
18
|
+
declare namespace viewRecordSetList {
|
|
19
|
+
export { _DEFAULT_CONFIGURATION__List as default_configuration };
|
|
20
|
+
}
|
|
21
|
+
import libPictRecordSetRecordView = require("../RecordSet-RecordBaseView.js");
|
|
22
|
+
declare namespace _DEFAULT_CONFIGURATION__List {
|
|
23
|
+
let ViewIdentifier: string;
|
|
24
|
+
let DefaultRenderable: string;
|
|
25
|
+
let DefaultDestinationAddress: string;
|
|
26
|
+
let DefaultTemplateRecordAddress: boolean;
|
|
27
|
+
let AutoInitialize: boolean;
|
|
28
|
+
let AutoInitializeOrdinal: number;
|
|
29
|
+
let AutoRender: boolean;
|
|
30
|
+
let AutoRenderOrdinal: number;
|
|
31
|
+
let AutoSolveWithApp: boolean;
|
|
32
|
+
let AutoSolveOrdinal: number;
|
|
33
|
+
let CSS: boolean;
|
|
34
|
+
let CSSPriority: number;
|
|
35
|
+
let Templates: {
|
|
36
|
+
Hash: string;
|
|
37
|
+
Template: string;
|
|
38
|
+
}[];
|
|
39
|
+
let Renderables: {
|
|
40
|
+
RenderableHash: string;
|
|
41
|
+
TemplateHash: string;
|
|
42
|
+
DestinationAddress: string;
|
|
43
|
+
RenderMethod: string;
|
|
44
|
+
}[];
|
|
45
|
+
let Manifests: {};
|
|
46
|
+
}
|
|
47
|
+
//# sourceMappingURL=RecordSet-List.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-List.d.ts","sourceRoot":"","sources":["../../../source/views/list/RecordSet-List.js"],"names":[],"mappings":";AAuEA;IAOE;;;;;;;;MAQC;IAGF,+DAuBC;IAWD,8CAMC;IAED,6CAkCC;IA9BA,iCAUC;IAsBF,iIAkHC;CAuBD"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export = viewRecordSetReadHeaderRead;
|
|
2
|
+
declare class viewRecordSetReadHeaderRead extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
}
|
|
5
|
+
declare namespace viewRecordSetReadHeaderRead {
|
|
6
|
+
export { _DEFAULT_CONFIGURATION_Read_HeaderRead as default_configuration };
|
|
7
|
+
}
|
|
8
|
+
import libPictView = require("pict-view");
|
|
9
|
+
declare namespace _DEFAULT_CONFIGURATION_Read_HeaderRead {
|
|
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-Read-HeaderRead.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-Read-HeaderRead.d.ts","sourceRoot":"","sources":["../../../source/views/read/RecordSet-Read-HeaderRead.js"],"names":[],"mappings":";AAkDA;IAEE,2DAIC;CACF"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export = viewRecordSetReadRecordRead;
|
|
2
|
+
declare class viewRecordSetReadRecordRead extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
}
|
|
5
|
+
declare namespace viewRecordSetReadRecordRead {
|
|
6
|
+
export { _DEFAULT_CONFIGURATION_Read_RecordRead as default_configuration };
|
|
7
|
+
}
|
|
8
|
+
import libPictView = require("pict-view");
|
|
9
|
+
declare namespace _DEFAULT_CONFIGURATION_Read_RecordRead {
|
|
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-Read-RecordRead.d.ts.map
|