pict-section-recordset 1.0.1 → 1.0.3
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/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/simple_entity/Simple-RecordSet-Application.js +3 -3
- package/example_applications/simple_entity/html/index.html +1 -1
- package/package.json +7 -6
- package/source/application/Pict-Application-RecordSet.js +12 -4
- package/source/providers/RecordSet-Link-Manager.js +52 -0
- package/source/providers/RecordSet-RecordProvider-MeadowEndpoints.js +1 -0
- package/source/providers/RecordSet-Router.js +64 -0
- package/source/services/RecordsSet-MetaController.js +99 -16
- package/source/views/RecordSet-RecordBaseView.js +84 -0
- package/source/views/RecordsSet-MacroView.js +63 -0
- package/source/views/dashboard/RecordSet-Dashboard.js +2 -2
- package/source/views/edit/RecordSet-Edit.js +2 -2
- package/source/views/list/RecordSet-List-PaginationBottom.js +42 -42
- package/source/views/list/RecordSet-List-PaginationTop.js +102 -90
- package/source/views/list/RecordSet-List-RecordList.js +3 -3
- package/source/views/list/RecordSet-List-RecordListEntry.js +86 -69
- package/source/views/list/RecordSet-List-RecordListHeader.js +65 -64
- package/source/views/list/RecordSet-List-Title.js +0 -1
- package/source/views/list/RecordSet-List.js +168 -22
- package/source/views/read/RecordSet-Read-RecordRead.js +62 -48
- package/source/views/read/RecordSet-Read.js +193 -51
- package/test/PictSectionRecordSet-Basic_tests.js +5 -1
- package/test/PictSectionRecordSet-RecordProvider-Meadow_tests.js +1 -1
- package/types/Pict-Section-RecordSet.d.ts +5 -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-Link-Manager.d.ts +23 -0
- package/types/providers/RecordSet-Link-Manager.d.ts.map +1 -0
- package/types/providers/RecordSet-RecordProvider-MeadowEndpoints.d.ts.map +1 -1
- 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 +13 -6
- package/types/services/RecordsSet-MetaController.d.ts.map +1 -1
- package/types/views/RecordSet-RecordBaseView.d.ts +53 -0
- package/types/views/RecordSet-RecordBaseView.d.ts.map +1 -0
- package/types/views/RecordsSet-MacroView.d.ts +33 -0
- package/types/views/RecordsSet-MacroView.d.ts.map +1 -1
- package/types/views/dashboard/RecordSet-Dashboard.d.ts +2 -3
- package/types/views/dashboard/RecordSet-Dashboard.d.ts.map +1 -1
- package/types/views/edit/RecordSet-Edit.d.ts +2 -3
- package/types/views/edit/RecordSet-Edit.d.ts.map +1 -1
- package/types/views/list/RecordSet-List-PaginationBottom.d.ts.map +1 -1
- package/types/views/list/RecordSet-List-PaginationTop.d.ts.map +1 -1
- package/types/views/list/RecordSet-List-RecordListEntry.d.ts.map +1 -1
- package/types/views/list/RecordSet-List-RecordListHeader.d.ts.map +1 -1
- package/types/views/list/RecordSet-List.d.ts +7 -3
- package/types/views/list/RecordSet-List.d.ts.map +1 -1
- package/types/views/read/RecordSet-Read-RecordRead.d.ts.map +1 -1
- package/types/views/read/RecordSet-Read.d.ts +12 -3
- package/types/views/read/RecordSet-Read.d.ts.map +1 -1
- /package/example_applications/{list_view/index.html → mocks/list-view.html} +0 -0
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
export =
|
|
1
|
+
export = PictSectionRecordSetApplication;
|
|
2
2
|
/**
|
|
3
|
-
* Represents a
|
|
3
|
+
* Represents a PictSectionRecordSetApplication.
|
|
4
4
|
*
|
|
5
|
-
* This is the automagic controller for a
|
|
5
|
+
* This is the automagic controller for a dynamic record set application.
|
|
6
6
|
*
|
|
7
7
|
* @class
|
|
8
8
|
* @extends libPictApplication
|
|
9
9
|
*/
|
|
10
|
-
declare class
|
|
10
|
+
declare class PictSectionRecordSetApplication extends libPictApplication {
|
|
11
11
|
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
12
12
|
}
|
|
13
|
-
declare namespace
|
|
13
|
+
declare namespace PictSectionRecordSetApplication {
|
|
14
14
|
export { default_configuration };
|
|
15
15
|
}
|
|
16
16
|
import libPictApplication = require("pict-application");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Application-RecordSet.d.ts","sourceRoot":"","sources":["../../source/application/Pict-Application-RecordSet.js"],"names":[],"mappings":";AAIA;;;;;;;GAOG;AACH;IAEC,2DAQC;
|
|
1
|
+
{"version":3,"file":"Pict-Application-RecordSet.d.ts","sourceRoot":"","sources":["../../source/application/Pict-Application-RecordSet.js"],"names":[],"mappings":";AAIA;;;;;;;GAOG;AACH;IAEC,2DAQC;CAoBD"}
|
|
@@ -0,0 +1,23 @@
|
|
|
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')} */
|
|
7
|
+
pict: import("pict");
|
|
8
|
+
linkTemplates: any[];
|
|
9
|
+
addRecordLinkTemplate(pNameTemplate: any, pURLTemplate: any, pDefault: any): {
|
|
10
|
+
Name: any;
|
|
11
|
+
URL: any;
|
|
12
|
+
Default: any;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
declare namespace PictRecordSetRouter {
|
|
16
|
+
export { _DEFAULT_PROVIDER_CONFIGURATION as default_configuration };
|
|
17
|
+
}
|
|
18
|
+
declare namespace _DEFAULT_PROVIDER_CONFIGURATION {
|
|
19
|
+
let ProviderIdentifier: string;
|
|
20
|
+
let AutoInitialize: boolean;
|
|
21
|
+
let AutoInitializeOrdinal: number;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=RecordSet-Link-Manager.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-Link-Manager.d.ts","sourceRoot":"","sources":["../../source/providers/RecordSet-Link-Manager.js"],"names":[],"mappings":";AAUA;IAEC,2DAkBC;IAbA,kCAAkC;IAClC,SADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAClB;IACZ,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IAST,qBAAuB;IAIxB;;;;MAcC;CACD"}
|
|
@@ -1 +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,
|
|
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,gBA4BvB;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;;;;;0BA7UY,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"}
|
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
export = RecordSetMetacontroller;
|
|
2
2
|
declare class RecordSetMetacontroller {
|
|
3
3
|
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
-
/** @type {import('pict') & { addView: (hash: string, options: any, prototype: any) => any }} */
|
|
5
|
-
pict: import("pict") & {
|
|
6
|
-
addView: (hash: string, options: any, prototype: any) => any;
|
|
7
|
-
};
|
|
8
4
|
/** @type {import('pict') & { addAndInstantiateSingletonService: (hash: string, options: any, prototype: any) => any }} */
|
|
9
5
|
fable: import("pict") & {
|
|
10
6
|
addAndInstantiateSingletonService: (hash: string, options: any, prototype: any) => any;
|
|
@@ -21,10 +17,21 @@ declare class RecordSetMetacontroller {
|
|
|
21
17
|
read: any;
|
|
22
18
|
dashboard: any;
|
|
23
19
|
};
|
|
20
|
+
recordSetProviders: {};
|
|
21
|
+
recordSetProviderConfigurations: {};
|
|
24
22
|
has_initialized: boolean;
|
|
25
|
-
|
|
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
|
+
addRecordLinkTemplate(pNameTemplate: any, pURLTemplate: any, pDefault: any): any;
|
|
29
|
+
initialize(): true | this;
|
|
26
30
|
}
|
|
27
31
|
declare namespace RecordSetMetacontroller {
|
|
28
|
-
|
|
32
|
+
export { _DEFAULT_CONFIGURATION as default_configuration };
|
|
33
|
+
}
|
|
34
|
+
declare namespace _DEFAULT_CONFIGURATION {
|
|
35
|
+
let DefaultMeadowURLPrefix: string;
|
|
29
36
|
}
|
|
30
37
|
//# sourceMappingURL=RecordsSet-MetaController.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordsSet-MetaController.d.ts","sourceRoot":"","sources":["../../source/services/RecordsSet-MetaController.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"RecordsSet-MetaController.d.ts","sourceRoot":"","sources":["../../source/services/RecordsSet-MetaController.js"],"names":[],"mappings":";AAoBA;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,iFAGC;IAED,0BAuCC;CACD"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
export = viewPictSectionRecordSetViewBase;
|
|
2
|
+
declare class viewPictSectionRecordSetViewBase extends libPictView {
|
|
3
|
+
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
+
/** @type {import('pict') & {
|
|
5
|
+
* log: any,
|
|
6
|
+
* instantiateServiceProviderWithoutRegistration: (hash: String) => any,
|
|
7
|
+
* PictSectionRecordSet: InstanceType<import('../Pict-Section-RecordSet.js')> }
|
|
8
|
+
* } */
|
|
9
|
+
pict: import("pict") & {
|
|
10
|
+
log: any;
|
|
11
|
+
instantiateServiceProviderWithoutRegistration: (hash: string) => any;
|
|
12
|
+
PictSectionRecordSet: InstanceType<{
|
|
13
|
+
new (pFable: any, pOptions: any, pServiceHash: any): import("../services/RecordsSet-MetaController.js");
|
|
14
|
+
default_configuration: {
|
|
15
|
+
DefaultMeadowURLPrefix: string;
|
|
16
|
+
};
|
|
17
|
+
PictRecordSetApplication: typeof import("../application/Pict-Application-RecordSet.js");
|
|
18
|
+
RecordSetProviderBase: typeof import("../providers/RecordSet-RecordProvider-Base.js");
|
|
19
|
+
RecordSetProviderMeadowEndpoints: typeof import("../providers/RecordSet-RecordProvider-MeadowEndpoints.js");
|
|
20
|
+
}>;
|
|
21
|
+
};
|
|
22
|
+
addRoutes(pPictRouter: any): boolean;
|
|
23
|
+
}
|
|
24
|
+
declare namespace viewPictSectionRecordSetViewBase {
|
|
25
|
+
export { _DEFAULT_CONFIGURATION_Base_View as default_configuration };
|
|
26
|
+
}
|
|
27
|
+
import libPictView = require("pict-view");
|
|
28
|
+
declare namespace _DEFAULT_CONFIGURATION_Base_View {
|
|
29
|
+
let ViewIdentifier: string;
|
|
30
|
+
let DefaultRenderable: string;
|
|
31
|
+
let DefaultDestinationAddress: string;
|
|
32
|
+
let DefaultTemplateRecordAddress: boolean;
|
|
33
|
+
let AutoInitialize: boolean;
|
|
34
|
+
let AutoInitializeOrdinal: number;
|
|
35
|
+
let AutoRender: boolean;
|
|
36
|
+
let AutoRenderOrdinal: number;
|
|
37
|
+
let AutoSolveWithApp: boolean;
|
|
38
|
+
let AutoSolveOrdinal: number;
|
|
39
|
+
let CSS: boolean;
|
|
40
|
+
let CSSPriority: number;
|
|
41
|
+
let Templates: {
|
|
42
|
+
Hash: string;
|
|
43
|
+
Template: string;
|
|
44
|
+
}[];
|
|
45
|
+
let Renderables: {
|
|
46
|
+
RenderableHash: string;
|
|
47
|
+
TemplateHash: string;
|
|
48
|
+
DestinationAddress: string;
|
|
49
|
+
RenderMethod: string;
|
|
50
|
+
}[];
|
|
51
|
+
let Manifests: {};
|
|
52
|
+
}
|
|
53
|
+
//# 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,2DAUC;IANA;;;;YAIQ;IACR,MALW,OAAO,MAAM,CAAC,GAAG;QACpB,GAAG,EAAE,GAAG,CAAC;QACT,6CAA6C,EAAE,CAAC,IAAI,QAAQ,KAAK,GAAG,CAAC;QACrE,oBAAoB,EAAE,YAAY,CAAC;;;;;;;;SAAsC,CAAC,CAAA;KAAE,CAE3E;IAGV,qCAIC;CACD"}
|
|
@@ -1 +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
|
+
}
|
|
1
34
|
//# sourceMappingURL=RecordsSet-MacroView.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordsSet-MacroView.d.ts","sourceRoot":"","sources":["../../source/views/RecordsSet-MacroView.js"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"RecordsSet-MacroView.d.ts","sourceRoot":"","sources":["../../source/views/RecordsSet-MacroView.js"],"names":[],"mappings":";AAkDA;IAEC,2DAIC;CACD"}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
export = viewRecordSetDashboard;
|
|
2
|
-
declare class viewRecordSetDashboard extends
|
|
3
|
-
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
2
|
+
declare class viewRecordSetDashboard extends libPictRecordSetRecordView {
|
|
4
3
|
}
|
|
5
4
|
declare namespace viewRecordSetDashboard {
|
|
6
5
|
export { _DEFAULT_CONFIGURATION__Dashboard as default_configuration };
|
|
7
6
|
}
|
|
8
|
-
import
|
|
7
|
+
import libPictRecordSetRecordView = require("../RecordSet-RecordBaseView.js");
|
|
9
8
|
declare namespace _DEFAULT_CONFIGURATION__Dashboard {
|
|
10
9
|
let ViewIdentifier: string;
|
|
11
10
|
let DefaultRenderable: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-Dashboard.d.ts","sourceRoot":"","sources":["../../../source/views/dashboard/RecordSet-Dashboard.js"],"names":[],"mappings":";AAkDA;
|
|
1
|
+
{"version":3,"file":"RecordSet-Dashboard.d.ts","sourceRoot":"","sources":["../../../source/views/dashboard/RecordSet-Dashboard.js"],"names":[],"mappings":";AAkDA;CAOC"}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
export = viewRecordSetEdit;
|
|
2
|
-
declare class viewRecordSetEdit extends
|
|
3
|
-
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
2
|
+
declare class viewRecordSetEdit extends libPictRecordSetRecordView {
|
|
4
3
|
}
|
|
5
4
|
declare namespace viewRecordSetEdit {
|
|
6
5
|
export { _DEFAULT_CONFIGURATION__Edit as default_configuration };
|
|
7
6
|
}
|
|
8
|
-
import
|
|
7
|
+
import libPictRecordSetRecordView = require("../RecordSet-RecordBaseView.js");
|
|
9
8
|
declare namespace _DEFAULT_CONFIGURATION__Edit {
|
|
10
9
|
let ViewIdentifier: string;
|
|
11
10
|
let DefaultRenderable: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-Edit.d.ts","sourceRoot":"","sources":["../../../source/views/edit/RecordSet-Edit.js"],"names":[],"mappings":";AAkDA;
|
|
1
|
+
{"version":3,"file":"RecordSet-Edit.d.ts","sourceRoot":"","sources":["../../../source/views/edit/RecordSet-Edit.js"],"names":[],"mappings":";AAkDA;CAOC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-List-PaginationBottom.d.ts","sourceRoot":"","sources":["../../../source/views/list/RecordSet-List-PaginationBottom.js"],"names":[],"mappings":";AAsDA;
|
|
1
|
+
{"version":3,"file":"RecordSet-List-PaginationBottom.d.ts","sourceRoot":"","sources":["../../../source/views/list/RecordSet-List-PaginationBottom.js"],"names":[],"mappings":";AAsDA;IAEC,2DAIC;CACD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-List-PaginationTop.d.ts","sourceRoot":"","sources":["../../../source/views/list/RecordSet-List-PaginationTop.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"RecordSet-List-PaginationTop.d.ts","sourceRoot":"","sources":["../../../source/views/list/RecordSet-List-PaginationTop.js"],"names":[],"mappings":";AAkHA;IAEC,2DAIC;CACD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-List-RecordListEntry.d.ts","sourceRoot":"","sources":["../../../source/views/list/RecordSet-List-RecordListEntry.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"RecordSet-List-RecordListEntry.d.ts","sourceRoot":"","sources":["../../../source/views/list/RecordSet-List-RecordListEntry.js"],"names":[],"mappings":";AAgGA;IAEC,2DAIC;CACD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-List-RecordListHeader.d.ts","sourceRoot":"","sources":["../../../source/views/list/RecordSet-List-RecordListHeader.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"RecordSet-List-RecordListHeader.d.ts","sourceRoot":"","sources":["../../../source/views/list/RecordSet-List-RecordListHeader.js"],"names":[],"mappings":";AA2EA;IAEC,2DAIC;CACD"}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export = viewRecordSetList;
|
|
2
|
-
declare class viewRecordSetList extends
|
|
3
|
-
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
2
|
+
declare class viewRecordSetList extends libPictRecordSetRecordView {
|
|
4
3
|
childViews: {
|
|
5
4
|
headerList: any;
|
|
6
5
|
title: any;
|
|
@@ -10,11 +9,16 @@ declare class viewRecordSetList extends libPictView {
|
|
|
10
9
|
recordListEntry: any;
|
|
11
10
|
paginationBottom: any;
|
|
12
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>;
|
|
13
17
|
}
|
|
14
18
|
declare namespace viewRecordSetList {
|
|
15
19
|
export { _DEFAULT_CONFIGURATION__List as default_configuration };
|
|
16
20
|
}
|
|
17
|
-
import
|
|
21
|
+
import libPictRecordSetRecordView = require("../RecordSet-RecordBaseView.js");
|
|
18
22
|
declare namespace _DEFAULT_CONFIGURATION__List {
|
|
19
23
|
let ViewIdentifier: string;
|
|
20
24
|
let DefaultRenderable: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-List.d.ts","sourceRoot":"","sources":["../../../source/views/list/RecordSet-List.js"],"names":[],"mappings":";AAuEA;
|
|
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,iIAqHC;CAuBD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-Read-RecordRead.d.ts","sourceRoot":"","sources":["../../../source/views/read/RecordSet-Read-RecordRead.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"RecordSet-Read-RecordRead.d.ts","sourceRoot":"","sources":["../../../source/views/read/RecordSet-Read-RecordRead.js"],"names":[],"mappings":";AAgEA;IAEC,2DAIC;CACD"}
|
|
@@ -1,11 +1,20 @@
|
|
|
1
1
|
export = viewRecordSetRead;
|
|
2
|
-
declare class viewRecordSetRead extends
|
|
3
|
-
|
|
2
|
+
declare class viewRecordSetRead extends libPictRecordSetRecordView {
|
|
3
|
+
childViews: {
|
|
4
|
+
viewHeaderRead: any;
|
|
5
|
+
viewTabBarRead: any;
|
|
6
|
+
viewRecordRead: any;
|
|
7
|
+
viewRecordReadExtra: any;
|
|
8
|
+
};
|
|
9
|
+
handleRecordSetReadRoute(pRoutePayload: any): Promise<boolean>;
|
|
10
|
+
onBeforeRenderRead(pRecordReadData: any): any;
|
|
11
|
+
formatDisplayData(pRecordListData: any): any;
|
|
12
|
+
renderRead(pRecordConfiguration: any, pProviderHash: any, pRecordGUID: any): Promise<boolean>;
|
|
4
13
|
}
|
|
5
14
|
declare namespace viewRecordSetRead {
|
|
6
15
|
export { _DEFAULT_CONFIGURATION__Read as default_configuration };
|
|
7
16
|
}
|
|
8
|
-
import
|
|
17
|
+
import libPictRecordSetRecordView = require("../RecordSet-RecordBaseView.js");
|
|
9
18
|
declare namespace _DEFAULT_CONFIGURATION__Read {
|
|
10
19
|
let ViewIdentifier: string;
|
|
11
20
|
let DefaultRenderable: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-Read.d.ts","sourceRoot":"","sources":["../../../source/views/read/RecordSet-Read.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"RecordSet-Read.d.ts","sourceRoot":"","sources":["../../../source/views/read/RecordSet-Read.js"],"names":[],"mappings":";AAsEA;IAOE;;;;;MAKC;IAIF,+DAeC;IAQD,8CAIC;IAED,6CAcC;IAED,8FAgDC;CAoBD"}
|
|
File without changes
|