pict-section-recordset 1.0.43 → 1.0.45
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/simple_entity/Simple-RecordSet-Application.js +199 -3
- package/example_applications/simple_entity/html/index.html +6 -0
- package/package.json +2 -2
- package/source/providers/Filter-Data-Provider.js +371 -0
- package/source/providers/RecordSet-Link-Manager.js +9 -1
- package/source/providers/RecordSet-RecordProvider-Base.js +1 -1
- package/source/providers/RecordSet-RecordProvider-MeadowEndpoints.js +76 -43
- package/source/services/RecordsSet-MetaController.js +48 -1
- package/source/templates/Pict-Template-FilterInstanceViews.js +11 -7
- package/source/views/RecordSet-Filters.js +78 -45
- package/source/views/filters/RecordSet-Filter-Base.js +19 -1
- package/source/views/filters/RecordSet-Filter-ExternalJoinSelectedValue.js +270 -0
- package/source/views/filters/RecordSet-Filter-ExternalJoinSelectedValueList.js +277 -0
- package/source/views/filters/RecordSet-Filter-InternalJoinSelectedValue.js +270 -0
- package/source/views/filters/RecordSet-Filter-InternalJoinSelectedValueList.js +277 -0
- package/source/views/filters/index.js +4 -0
- package/types/providers/Filter-Data-Provider.d.ts +120 -0
- package/types/providers/Filter-Data-Provider.d.ts.map +1 -0
- package/types/providers/RecordSet-Link-Manager.d.ts +10 -5
- package/types/providers/RecordSet-Link-Manager.d.ts.map +1 -1
- package/types/providers/RecordSet-RecordProvider-MeadowEndpoints.d.ts +1 -1
- package/types/providers/RecordSet-RecordProvider-MeadowEndpoints.d.ts.map +1 -1
- package/types/services/RecordsSet-MetaController.d.ts +36 -7
- package/types/services/RecordsSet-MetaController.d.ts.map +1 -1
- package/types/templates/Pict-Template-FilterInstanceViews.d.ts +1 -1
- package/types/templates/Pict-Template-FilterInstanceViews.d.ts.map +1 -1
- package/types/views/RecordSet-Filters.d.ts +10 -0
- package/types/views/RecordSet-Filters.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-Base.d.ts +10 -0
- package/types/views/filters/RecordSet-Filter-Base.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-ExternalJoinSelectedValue.d.ts +24 -0
- package/types/views/filters/RecordSet-Filter-ExternalJoinSelectedValue.d.ts.map +1 -0
- package/types/views/filters/RecordSet-Filter-ExternalJoinSelectedValueList.d.ts +24 -0
- package/types/views/filters/RecordSet-Filter-ExternalJoinSelectedValueList.d.ts.map +1 -0
- package/types/views/filters/RecordSet-Filter-InternalJoinSelectedValue.d.ts +24 -0
- package/types/views/filters/RecordSet-Filter-InternalJoinSelectedValue.d.ts.map +1 -0
- package/types/views/filters/RecordSet-Filter-InternalJoinSelectedValueList.d.ts +24 -0
- package/types/views/filters/RecordSet-Filter-InternalJoinSelectedValueList.d.ts.map +1 -0
- package/types/views/filters/index.d.ts +4 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Filter-Data-Provider.d.ts","sourceRoot":"","sources":["../../source/providers/Filter-Data-Provider.js"],"names":[],"mappings":";AAUA;IAEC;;;;OAIG;IACH,oBAJW,OAAO,MAAM,CAAC,aACd,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,iBACnB,MAAM,EAiBhB;IATA,qBAA2B;IAC3B,aAAkB;IAMlB,eAAqB;IACrB,gCAAsC;IAUvC;;OAEG;IACH,eAFY,IAAI,CAKf;IAED;;;;;;OAMG;IACH,wBAJW,MAAM,OAUhB;IAED;;;;OAIG;IACH,sCAJW,MAAM,GAEL,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAK9B;IAED;;;;;;;OAOG;IACH,8BALW,MAAM,yBACN,MAAM,GAEL,OAAO,CAgBlB;IAED;;;;;;;OAOG;IACH,gCALW,MAAM,yBACN,MAAM,GAEL,MAAM,CAQjB;IAED;;;;;OAKG;IACH,2BAHW,MAAM,YACN,OAAO,WAejB;IAED;;;;;;;OAOG;IACH,2BALW,MAAM,YACN,OAAO,GAEN,KAAK,CAAC,MAAM,CAAC,CA6BxB;IAED;;;;;;OAMG;IACH,gDANW,MAAM,yBACN,MAAM,YACN,OAAO,GAEN,OAAO,CA4BlB;IAED;;;;OAIG;IACH,qDAJW,MAAM,yBACN,MAAM,YACN,OAAO,WAoCjB;IAED;;;OAGG;IACH,sBAHW,MAAM,0BACN,MAAM,QAoDhB;IAED;;OAEG;IACH,uBAFW,MAAM,QAQhB;IAED;;;OAGG;IACH,uBAHW,MAAM,+BACN,MAAM,QAUhB;IAED;;;;OAIG;IACH,cAJW,MAAM,GAEL,GAAG,CASd;IAED;;;OAGG;IACH,cAHW,MAAM,UACN,GAAG,WAMb;IAED;;;;OAIG;IACH,iBAJW,MAAM,GAEL,OAAO,CAUlB;CACD"}
|
|
@@ -4,11 +4,16 @@ declare class PictRecordSetLinkManager extends libPictProvider {
|
|
|
4
4
|
/** @type {import('pict')} */
|
|
5
5
|
pict: import("pict");
|
|
6
6
|
linkTemplates: any[];
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
/**
|
|
8
|
+
* TODO: Add the ability to add routes that are scoped to particular entity types
|
|
9
|
+
*
|
|
10
|
+
* @param {string} pNameTemplate - The name template for the record link.
|
|
11
|
+
* @param {string} pURLTemplate - The URL template for the record link.
|
|
12
|
+
* @param {boolean} pDefault - Whether this is a default link template.
|
|
13
|
+
*
|
|
14
|
+
* @return {Record<string, any>} - The link template object that was added.
|
|
15
|
+
*/
|
|
16
|
+
addRecordLinkTemplate(pNameTemplate: string, pURLTemplate: string, pDefault: boolean): Record<string, any>;
|
|
12
17
|
}
|
|
13
18
|
declare namespace PictRecordSetLinkManager {
|
|
14
19
|
export { _DEFAULT_PROVIDER_CONFIGURATION as default_configuration };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-Link-Manager.d.ts","sourceRoot":"","sources":["../../source/providers/RecordSet-Link-Manager.js"],"names":[],"mappings":";AAWA;IAEC,2DAkBC;IAXA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IAST,qBAAuB;
|
|
1
|
+
{"version":3,"file":"RecordSet-Link-Manager.d.ts","sourceRoot":"","sources":["../../source/providers/RecordSet-Link-Manager.js"],"names":[],"mappings":";AAWA;IAEC,2DAkBC;IAXA,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IAST,qBAAuB;IAGxB;;;;;;;;OAQG;IACH,qCANW,MAAM,gBACN,MAAM,YACN,OAAO,GAEN,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAgB9B;CACD;;;;;AAvDD,kCAAkC;AAClC,+CADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAO7B"}
|
|
@@ -137,7 +137,7 @@ declare class MeadowEndpointsRecordSetProvider extends libRecordSetProviderBase
|
|
|
137
137
|
* @param {string} pEntity - The schema field name.
|
|
138
138
|
* @return {string} - The human-readable name for the entity.
|
|
139
139
|
*/
|
|
140
|
-
|
|
140
|
+
_getHumanReadableEntityName(pEntity: string): string;
|
|
141
141
|
/**
|
|
142
142
|
* @param {string} pSchemaField - The schema field name.
|
|
143
143
|
* @return {string} - The human-readable name for the schema field.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-RecordProvider-MeadowEndpoints.d.ts","sourceRoot":"","sources":["../../source/providers/RecordSet-RecordProvider-MeadowEndpoints.js"],"names":[],"mappings":";AAGA;;;GAGG;AAEH;;;GAGG;AACH;IAcE;;;;;;;;;aASS;IACT,MAVW,OAAO,MAAM,CAAC,GAAG;QACpB,GAAG,EAAE,GAAG,CAAC;QACT,QAAQ,EACf;YACI,oBAAoB,EAAE,YAAY,CAAC;;;;;;aAAsC,CAAC,CAAC;YAC/E,CAAK,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;SACnB,CAAC;QACE,6CAA6C,EAAE,CAAC,IAAI,QAAQ,KAAK,GAAG,CAAC;QACrE,oBAAoB,EAAE,YAAY,CAAC;;;;;;SAAsC,CAAC,CAAA;KAC7E,CACI;IACT;aAVa,GAAG;kBAEf;YACI,oBAAoB,EAAE,YAAY,CAAC;;;;;;aAAsC,CAAC,CAAC;YAC/E,CAAK,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;SACnB;uDACkD,CAAC,IAAI,QAAQ,KAAK,GAAG;8BAC9C,YAAY,CAAC;;;;;;SAAsC,CAAC;MAG5D;IAMtB,kCAAkC;IAClC,SADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAClB;IACZ,kDAAkD;IAClD,cADW,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CACvB;IACvB,kDAAkD;IAClD,iBADW,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CACpB;IAG3B,0EAA0E;IAC1E,sBADa,OAAO,iDAAiD,CAAC,CAerE;IAVC,wEAAwE;IAExE,iBAFW,OAAO,iDAAiD,CAAC,CAE4B;IAUlG;;OAEG;IACH,0BAFY,KAAK,CAAC,MAAM,CAAC,CASxB;IAED;;;;OAIG;IACH,qBAFW,MAAM,GAAC,MAAM,gBA4BvB;IAED;;;;OAIG;IACH,uBAFW,MAAM,GAAC,MAAM,gBA2BvB;IAED,iGAiBC;IA+CD;;;;OAIG;IACH,4BAFW,eAAe,gBA0BzB;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;;;;OAIG;IACH,oCAJW,MAAM,WACN,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,uBACnB,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,
|
|
1
|
+
{"version":3,"file":"RecordSet-RecordProvider-MeadowEndpoints.d.ts","sourceRoot":"","sources":["../../source/providers/RecordSet-RecordProvider-MeadowEndpoints.js"],"names":[],"mappings":";AAGA;;;GAGG;AAEH;;;GAGG;AACH;IAcE;;;;;;;;;aASS;IACT,MAVW,OAAO,MAAM,CAAC,GAAG;QACpB,GAAG,EAAE,GAAG,CAAC;QACT,QAAQ,EACf;YACI,oBAAoB,EAAE,YAAY,CAAC;;;;;;aAAsC,CAAC,CAAC;YAC/E,CAAK,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;SACnB,CAAC;QACE,6CAA6C,EAAE,CAAC,IAAI,QAAQ,KAAK,GAAG,CAAC;QACrE,oBAAoB,EAAE,YAAY,CAAC;;;;;;SAAsC,CAAC,CAAA;KAC7E,CACI;IACT;aAVa,GAAG;kBAEf;YACI,oBAAoB,EAAE,YAAY,CAAC;;;;;;aAAsC,CAAC,CAAC;YAC/E,CAAK,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;SACnB;uDACkD,CAAC,IAAI,QAAQ,KAAK,GAAG;8BAC9C,YAAY,CAAC;;;;;;SAAsC,CAAC;MAG5D;IAMtB,kCAAkC;IAClC,SADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAClB;IACZ,kDAAkD;IAClD,cADW,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CACvB;IACvB,kDAAkD;IAClD,iBADW,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CACpB;IAG3B,0EAA0E;IAC1E,sBADa,OAAO,iDAAiD,CAAC,CAerE;IAVC,wEAAwE;IAExE,iBAFW,OAAO,iDAAiD,CAAC,CAE4B;IAUlG;;OAEG;IACH,0BAFY,KAAK,CAAC,MAAM,CAAC,CASxB;IAED;;;;OAIG;IACH,qBAFW,MAAM,GAAC,MAAM,gBA4BvB;IAED;;;;OAIG;IACH,uBAFW,MAAM,GAAC,MAAM,gBA2BvB;IAED,iGAiBC;IA+CD;;;;OAIG;IACH,4BAFW,eAAe,gBA0BzB;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;;;;OAIG;IACH,oCAJW,MAAM,WACN,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,uBACnB,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,OAyF7B;IAED;;OAEG;IACH,6BAFW,CAAC,KAAK,CAAC,EAAE,KAAK,KAAK,IAAI,QA2FjC;IAED;;;OAGG;IACH,qCAHW,MAAM,GACL,MAAM,CAKjB;IAED;;;OAGG;IACH,yCAHW,MAAM,GACL,MAAM,CAiCjB;IAED;;OAEG;IACH,kCAFW,CAAC,KAAK,CAAC,EAAE,KAAK,KAAK,IAAI,QA6BjC;IAED,+BA8HC;CA0DD;;;;;uBA1yBY,OAAO,oCAAoC,EAAE,eAAe;uBAC5D,OAAO,oCAAoC,EAAE,eAAe"}
|
|
@@ -36,16 +36,45 @@ declare class RecordSetMetacontroller {
|
|
|
36
36
|
manifests: Record<string, import("manyfest")>;
|
|
37
37
|
has_initialized: boolean;
|
|
38
38
|
/**
|
|
39
|
+
* @param {string} pRecordSet - The RecordSet name to get the configuration for.
|
|
40
|
+
*
|
|
39
41
|
* @return {Record<string, any>} - The registered configuration for the RecordSet
|
|
40
42
|
*/
|
|
41
|
-
getRecordSetConfiguration(pRecordSet:
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
43
|
+
getRecordSetConfiguration(pRecordSet: string): Record<string, any>;
|
|
44
|
+
/**
|
|
45
|
+
* @param {Record<string, any>} pRecordSetConfiguration - The RecordSet configuration to load.
|
|
46
|
+
*/
|
|
47
|
+
loadRecordSetConfiguration(pRecordSetConfiguration: Record<string, any>): boolean;
|
|
48
|
+
/**
|
|
49
|
+
* @param {Array<Record<string, any>>} pRecordSetConfigurationArray - An array of RecordSet configurations to load.
|
|
50
|
+
*/
|
|
51
|
+
loadRecordSetConfigurationArray(pRecordSetConfigurationArray: Array<Record<string, any>>): boolean;
|
|
52
|
+
/**
|
|
53
|
+
* @param {Record<string, any> | string} pRecordSet - The RecordSet configuration or hash to load dynamically.
|
|
54
|
+
* @param {string} [pEntity] - (optional) The Entity type to use (defaults to the RecordSet name if not provided).
|
|
55
|
+
* @param {string} [pDefaultFilter] - (optional) The default filter to use.
|
|
56
|
+
*/
|
|
57
|
+
loadRecordSetDynamically(pRecordSet: Record<string, any> | string, pEntity?: string, pDefaultFilter?: string): any;
|
|
58
|
+
/**
|
|
59
|
+
* @param {Record<string, any>} pRoutePayload - The route payload containing the RecordSet and optional Entity and DefaultFilter.
|
|
60
|
+
*/
|
|
61
|
+
handleLoadDynamicRecordSetRoute(pRoutePayload: Record<string, any>): any;
|
|
62
|
+
/**
|
|
63
|
+
* @param {import('pict-router')} pPictRouter - The Pict Router to add the routes to.
|
|
64
|
+
*/
|
|
46
65
|
addRoutes(pPictRouter: any): boolean;
|
|
47
|
-
|
|
48
|
-
|
|
66
|
+
/**
|
|
67
|
+
* @param {string} pCapability - The capability to check for.
|
|
68
|
+
*/
|
|
69
|
+
checkSession(pCapability: string): Promise<boolean>;
|
|
70
|
+
/**
|
|
71
|
+
* @param {string} pNameTemplate - The name template for the record link.
|
|
72
|
+
* @param {string} pURLTemplate - The URL template for the record link.
|
|
73
|
+
* @param {boolean} pDefault - Whether this is a default link template.
|
|
74
|
+
*
|
|
75
|
+
* @return {Record<string, any>} - The link template object that was added.
|
|
76
|
+
*/
|
|
77
|
+
addRecordLinkTemplate(pNameTemplate: string, pURLTemplate: string, pDefault: boolean): Record<string, any>;
|
|
49
78
|
initialize(): true | this;
|
|
50
79
|
getManifest(pScope: any): import("manyfest");
|
|
51
80
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordsSet-MetaController.d.ts","sourceRoot":"","sources":["../../source/services/RecordsSet-MetaController.js"],"names":[],"mappings":";AAwBA;IAEC,2DA0CC;IArCA,0JAA0J;IAC1J,OADW,OAAO,MAAM,CAAC,GAAG;QAAE,iCAAiC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,SAAS,EAAE,GAAG,KAAK,GAAG,CAAC;QAAC,WAAW,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK,GAAG,CAAA;KAAE,CAC5I;IACV;2CAFiE,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,SAAS,EAAE,GAAG,KAAK,GAAG;qBAAe,CAAC,GAAG,EAAE,GAAG,KAAK,GAAG;MAE9H;IACtB,kBAAkB;IAClB,KADW,GAAG,CACN;IACR,kBAAkB;IAClB,SADW,GAAG,CACF;IACZ,qBAAqB;IACrB,MADW,MAAM,CACR;IAET;;;;;MAKC;IAED,sDAAsD;IACtD,oBADW,MAAM,CAAC,MAAM,EAAE,OAAO,eAAe,CAAC,CAAC,CACtB;IAC5B,kDAAkD;IAClD,iCADW,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CACL;IAEzC,kDAAkD;IAClD,yBADW,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CACb;IAEjC,+DAA+D;IAC/D,kBADW,KAAK,CAAC,CAAC,WAAW,EAAE,MAAM,KAAK,OAAO,CAAC,OAAO,CAAC,CAAC,CACjC;IAE1B,kDAAkD;IAClD,qBADW,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CACjB;IAC7B,iDAAiD;IACjD,WADW,MAAM,CAAC,MAAM,EAAE,OAAO,UAAU,CAAC,CAAC,CACG;IAEhD,yBAA4B;IAiC7B
|
|
1
|
+
{"version":3,"file":"RecordsSet-MetaController.d.ts","sourceRoot":"","sources":["../../source/services/RecordsSet-MetaController.js"],"names":[],"mappings":";AAwBA;IAEC,2DA0CC;IArCA,0JAA0J;IAC1J,OADW,OAAO,MAAM,CAAC,GAAG;QAAE,iCAAiC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,SAAS,EAAE,GAAG,KAAK,GAAG,CAAC;QAAC,WAAW,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK,GAAG,CAAA;KAAE,CAC5I;IACV;2CAFiE,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,SAAS,EAAE,GAAG,KAAK,GAAG;qBAAe,CAAC,GAAG,EAAE,GAAG,KAAK,GAAG;MAE9H;IACtB,kBAAkB;IAClB,KADW,GAAG,CACN;IACR,kBAAkB;IAClB,SADW,GAAG,CACF;IACZ,qBAAqB;IACrB,MADW,MAAM,CACR;IAET;;;;;MAKC;IAED,sDAAsD;IACtD,oBADW,MAAM,CAAC,MAAM,EAAE,OAAO,eAAe,CAAC,CAAC,CACtB;IAC5B,kDAAkD;IAClD,iCADW,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CACL;IAEzC,kDAAkD;IAClD,yBADW,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CACb;IAEjC,+DAA+D;IAC/D,kBADW,KAAK,CAAC,CAAC,WAAW,EAAE,MAAM,KAAK,OAAO,CAAC,OAAO,CAAC,CAAC,CACjC;IAE1B,kDAAkD;IAClD,qBADW,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CACjB;IAC7B,iDAAiD;IACjD,WADW,MAAM,CAAC,MAAM,EAAE,OAAO,UAAU,CAAC,CAAC,CACG;IAEhD,yBAA4B;IAiC7B;;;;OAIG;IACH,sCAJW,MAAM,GAEL,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAK9B;IAED;;OAEG;IACH,oDAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,WAyG7B;IAED;;OAEG;IACH,8DAFW,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,WAqBpC;IAED;;;;OAIG;IACH,qCAJW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,MAAM,YAC5B,MAAM,mBACN,MAAM,OAqDhB;IAED;;OAEG;IACH,+CAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,OAe7B;IAED;;OAEG;IACH,qCAMC;IAED;;OAEG;IACH,0BAFW,MAAM,oBAYhB;IAED;;;;;;OAMG;IACH,qCANW,MAAM,gBACN,MAAM,YACN,OAAO,GAEN,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAK9B;IAED,0BAmFC;IAED,6CAGC;IAED;;OAEG;IACH,sCAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,QAwC7B;CAED;;;;AAtdD,kCAAkC;AAClC,sCADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAI3B"}
|
|
@@ -13,7 +13,7 @@ declare class PictTemplateFilterInstanceViewInstruction extends libPictTemplate
|
|
|
13
13
|
constructor(pFable: any, pOptions: any, pServiceHash: string);
|
|
14
14
|
/** @type {any} */
|
|
15
15
|
log: any;
|
|
16
|
-
|
|
16
|
+
_getViewForFilterClause(pClause: any): import("../views/filters/RecordSet-Filter-Base.js");
|
|
17
17
|
}
|
|
18
18
|
import libPictTemplate = require("pict-template");
|
|
19
19
|
//# sourceMappingURL=Pict-Template-FilterInstanceViews.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Template-FilterInstanceViews.d.ts","sourceRoot":"","sources":["../../source/templates/Pict-Template-FilterInstanceViews.js"],"names":[],"mappings":";AAGA;;;;GAIG;AACH;IAEC;;;;OAIG;IACH,8DAeC;IAXA,kBAAkB;IAClB,KADW,GAAG,CACN;IAYT,
|
|
1
|
+
{"version":3,"file":"Pict-Template-FilterInstanceViews.d.ts","sourceRoot":"","sources":["../../source/templates/Pict-Template-FilterInstanceViews.js"],"names":[],"mappings":";AAGA;;;;GAIG;AACH;IAEC;;;;OAIG;IACH,8DAeC;IAXA,kBAAkB;IAClB,KADW,GAAG,CACN;IAYT,2FAsBC;CA2KD"}
|
|
@@ -13,6 +13,16 @@ declare class ViewRecordSetSUBSETFilters extends libPictView {
|
|
|
13
13
|
};
|
|
14
14
|
chars: string;
|
|
15
15
|
lookup: any[] | Uint8Array<ArrayBuffer>;
|
|
16
|
+
/**
|
|
17
|
+
* @return {string} - The marshalling prefix configured for filters. Usually 'Bundle.'
|
|
18
|
+
*/
|
|
19
|
+
getInformaryAddressPrefix(): string;
|
|
20
|
+
/**
|
|
21
|
+
* @param {string} pAddress - The address of the informary to get the value from.
|
|
22
|
+
*
|
|
23
|
+
* @return {any} - The value at the given address, using the informary marshalling prefix.
|
|
24
|
+
*/
|
|
25
|
+
getInformaryScopedValue(pAddress: string): any;
|
|
16
26
|
/**
|
|
17
27
|
* Marshals data from the view to the model, usually AppData (or configured data store).
|
|
18
28
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-Filters.d.ts","sourceRoot":"","sources":["../../source/views/RecordSet-Filters.js"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"RecordSet-Filters.d.ts","sourceRoot":"","sources":["../../source/views/RecordSet-Filters.js"],"names":[],"mappings":";AA+LA;IAEC,2DA4BC;IAxBA,kHAAkH;IAClH,MADW,GAAe,GAAG,OAAO,MAAM,CAAC,GAAG;QAAE,oBAAoB,EAAE;;;;;;SAAsC,CAAA;KAAE,CACrG;IAeT,cAA+E;IAG/E,wCAA0E;IAO3E;;OAEG;IACH,6BAFY,MAAM,CAKjB;IAED;;;;OAIG;IACH,kCAJW,MAAM,GAEL,GAAG,CAMd;IAKD;;;;OAIG;IACH,qBAFa,GAAG,CAaf;IAED;;;;OAIG;IACH,mBAFa,GAAG,CAaf;IAED;;;;OAIG;IACH,qBAJW,KAAK,cACL,MAAM,gBACN,MAAM,QAShB;IAED;;;;OAIG;IACH,0BAJW,MAAM,gBACN,MAAM,kBACN,MAAM,QAgDhB;IAED;;;;OAIG;IACH,oBAJW,KAAK,cACL,MAAM,gBACN,MAAM,QAqBhB;IAED;;;;OAIG;IACH,0BAJW,KAAK,cACL,MAAM,gBACN,MAAM,QAQhB;IAED,mGAOC;IAED,6FAOC;IAED,wCAIC;IAwCD,6DAeC;IAED;;;;OAIG;IACH,yCAJW,MAAM,GAEL,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAUvC;IAED;;;;;OAKG;IACH,iBALW,MAAM,aACN,iBAAiB,GAEhB,OAAO,CAAC,WAAW,CAAC,CAU/B;IAED;;;OAGG;IACH,sBAHW,UAAU,aACV,iBAAiB,mBAY3B;IAED;;;;OAIG;IACH,oBAJW,WAAW,GAEV,MAAM,CA2BjB;IAED;;;;OAIG;IACH,eAJW,MAAM,GAEL,WAAW,CAsCtB;CACD;;;;;AAzkBD,kCAAkC;AAClC,oDADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CA+I5B"}
|
|
@@ -8,6 +8,16 @@ declare class ViewRecordSetSUBSETFilterBase extends libPictView {
|
|
|
8
8
|
*/
|
|
9
9
|
prepareRecord(pRecord: Record<string, any>): void;
|
|
10
10
|
getFilterFormTemplate(): string;
|
|
11
|
+
/**
|
|
12
|
+
* @return {string} - The prefix for the informary address.
|
|
13
|
+
*/
|
|
14
|
+
getInformaryAddressPrefix(): string;
|
|
15
|
+
/**
|
|
16
|
+
* @param {string} pInformaryAddress - The address of the informary to get the value from.
|
|
17
|
+
*
|
|
18
|
+
* @return {any} - The value at the informary address.
|
|
19
|
+
*/
|
|
20
|
+
getInformaryScopedValue(pInformaryAddress: string): any;
|
|
11
21
|
}
|
|
12
22
|
declare namespace ViewRecordSetSUBSETFilterBase {
|
|
13
23
|
export { _DEFAULT_CONFIGURATION_SUBSET_Filter as default_configuration };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RecordSet-Filter-Base.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-Base.js"],"names":[],"mappings":";AAmEA;IAEC,2DAIC;IAED;;;;OAIG;IACH,uBAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,QAe7B;IAED,gCAGC;CACD;;;;;
|
|
1
|
+
{"version":3,"file":"RecordSet-Filter-Base.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-Base.js"],"names":[],"mappings":";AAmEA;IAEC,2DAIC;IAED;;;;OAIG;IACH,uBAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,QAe7B;IAED,gCAGC;IAED;;OAEG;IACH,6BAFY,MAAM,CAKjB;IAED;;;;OAIG;IACH,2CAJW,MAAM,GAEL,GAAG,CAKd;CACD;;;;;AAnHD,kCAAkC;AAClC,oDADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CA+D5B"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export = ViewRecordSetSUBSETFilterExternalJoinSelectedValue;
|
|
2
|
+
declare class ViewRecordSetSUBSETFilterExternalJoinSelectedValue extends ViewRecordSetSUBSETFilterBase {
|
|
3
|
+
/**
|
|
4
|
+
* @param {UIEvent} pEvent
|
|
5
|
+
* @param {string} pClauseInformaryAddress
|
|
6
|
+
* @param {string} pClauseHash
|
|
7
|
+
*/
|
|
8
|
+
loadMore(pEvent: UIEvent, pClauseInformaryAddress: string, pClauseHash: string, pCurrentOffset?: number): void;
|
|
9
|
+
/**
|
|
10
|
+
* @param {UIEvent} pEvent
|
|
11
|
+
* @param {string} pClauseInformaryAddress
|
|
12
|
+
* @param {string} pClauseHash
|
|
13
|
+
* @param {number} [pOffset=0] - The offset for the search results, defaults to 0
|
|
14
|
+
*/
|
|
15
|
+
performSearch(pEvent: UIEvent, pClauseInformaryAddress: string, pClauseHash: string, pOffset?: number): void;
|
|
16
|
+
handleSelect(pEvent: any, pRecordLookupValue: any, pClauseInformaryAddress: any, pClauseHash: any): void;
|
|
17
|
+
handleRemove(pEvent: any, pRecordLookupValue: any, pClauseInformaryAddress: any, pClauseHash: any): void;
|
|
18
|
+
}
|
|
19
|
+
declare namespace ViewRecordSetSUBSETFilterExternalJoinSelectedValue {
|
|
20
|
+
export { default_configuration };
|
|
21
|
+
}
|
|
22
|
+
import ViewRecordSetSUBSETFilterBase = require("./RecordSet-Filter-Base");
|
|
23
|
+
declare const default_configuration: any;
|
|
24
|
+
//# sourceMappingURL=RecordSet-Filter-ExternalJoinSelectedValue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-Filter-ExternalJoinSelectedValue.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-ExternalJoinSelectedValue.js"],"names":[],"mappings":";AA2EA;IA8CC;;;;OAIG;IACH,iBAJW,OAAO,2BACP,MAAM,eACN,MAAM,iCAKhB;IAED;;;;;OAKG;IACH,sBALW,OAAO,2BACP,MAAM,eACN,MAAM,YACN,MAAM,QA0DhB;IAED,yGAwCC;IAED,yGA2BC;CACD"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export = ViewRecordSetSUBSETFilterExternalJoinSelectedValueList;
|
|
2
|
+
declare class ViewRecordSetSUBSETFilterExternalJoinSelectedValueList extends ViewRecordSetSUBSETFilterBase {
|
|
3
|
+
/**
|
|
4
|
+
* @param {UIEvent} pEvent
|
|
5
|
+
* @param {string} pClauseInformaryAddress
|
|
6
|
+
* @param {string} pClauseHash
|
|
7
|
+
*/
|
|
8
|
+
loadMore(pEvent: UIEvent, pClauseInformaryAddress: string, pClauseHash: string, pCurrentOffset?: number): void;
|
|
9
|
+
/**
|
|
10
|
+
* @param {UIEvent} pEvent
|
|
11
|
+
* @param {string} pClauseInformaryAddress
|
|
12
|
+
* @param {string} pClauseHash
|
|
13
|
+
* @param {number} [pOffset=0] - The offset for the search results, defaults to 0
|
|
14
|
+
*/
|
|
15
|
+
performSearch(pEvent: UIEvent, pClauseInformaryAddress: string, pClauseHash: string, pOffset?: number): void;
|
|
16
|
+
handleAdd(pEvent: any, pRecordLookupValue: any, pClauseInformaryAddress: any, pClauseHash: any): void;
|
|
17
|
+
handleRemove(pEvent: any, pRecordLookupValue: any, pClauseInformaryAddress: any, pClauseHash: any): void;
|
|
18
|
+
}
|
|
19
|
+
declare namespace ViewRecordSetSUBSETFilterExternalJoinSelectedValueList {
|
|
20
|
+
export { default_configuration };
|
|
21
|
+
}
|
|
22
|
+
import ViewRecordSetSUBSETFilterBase = require("./RecordSet-Filter-Base");
|
|
23
|
+
declare const default_configuration: any;
|
|
24
|
+
//# sourceMappingURL=RecordSet-Filter-ExternalJoinSelectedValueList.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-Filter-ExternalJoinSelectedValueList.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-ExternalJoinSelectedValueList.js"],"names":[],"mappings":";AA2EA;IA8CC;;;;OAIG;IACH,iBAJW,OAAO,2BACP,MAAM,eACN,MAAM,iCAKhB;IAED;;;;;OAKG;IACH,sBALW,OAAO,2BACP,MAAM,eACN,MAAM,YACN,MAAM,QA0DhB;IAED,sGA+CC;IAED,yGA2BC;CACD"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export = ViewRecordSetSUBSETFilterInternalJoinSelectedValue;
|
|
2
|
+
declare class ViewRecordSetSUBSETFilterInternalJoinSelectedValue extends ViewRecordSetSUBSETFilterBase {
|
|
3
|
+
/**
|
|
4
|
+
* @param {UIEvent} pEvent
|
|
5
|
+
* @param {string} pClauseInformaryAddress
|
|
6
|
+
* @param {string} pClauseHash
|
|
7
|
+
*/
|
|
8
|
+
loadMore(pEvent: UIEvent, pClauseInformaryAddress: string, pClauseHash: string, pCurrentOffset?: number): void;
|
|
9
|
+
/**
|
|
10
|
+
* @param {UIEvent} pEvent
|
|
11
|
+
* @param {string} pClauseInformaryAddress
|
|
12
|
+
* @param {string} pClauseHash
|
|
13
|
+
* @param {number} [pOffset=0] - The offset for the search results, defaults to 0
|
|
14
|
+
*/
|
|
15
|
+
performSearch(pEvent: UIEvent, pClauseInformaryAddress: string, pClauseHash: string, pOffset?: number): void;
|
|
16
|
+
handleSelect(pEvent: any, pRecordLookupValue: any, pClauseInformaryAddress: any, pClauseHash: any): void;
|
|
17
|
+
handleRemove(pEvent: any, pRecordLookupValue: any, pClauseInformaryAddress: any, pClauseHash: any): void;
|
|
18
|
+
}
|
|
19
|
+
declare namespace ViewRecordSetSUBSETFilterInternalJoinSelectedValue {
|
|
20
|
+
export { default_configuration };
|
|
21
|
+
}
|
|
22
|
+
import ViewRecordSetSUBSETFilterBase = require("./RecordSet-Filter-Base");
|
|
23
|
+
declare const default_configuration: any;
|
|
24
|
+
//# sourceMappingURL=RecordSet-Filter-InternalJoinSelectedValue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-Filter-InternalJoinSelectedValue.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-InternalJoinSelectedValue.js"],"names":[],"mappings":";AA2EA;IA8CC;;;;OAIG;IACH,iBAJW,OAAO,2BACP,MAAM,eACN,MAAM,iCAKhB;IAED;;;;;OAKG;IACH,sBALW,OAAO,2BACP,MAAM,eACN,MAAM,YACN,MAAM,QA0DhB;IAED,yGAwCC;IAED,yGA2BC;CACD"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export = ViewRecordSetSUBSETFilterInternalJoinSelectedValueList;
|
|
2
|
+
declare class ViewRecordSetSUBSETFilterInternalJoinSelectedValueList extends ViewRecordSetSUBSETFilterBase {
|
|
3
|
+
/**
|
|
4
|
+
* @param {UIEvent} pEvent
|
|
5
|
+
* @param {string} pClauseInformaryAddress
|
|
6
|
+
* @param {string} pClauseHash
|
|
7
|
+
*/
|
|
8
|
+
loadMore(pEvent: UIEvent, pClauseInformaryAddress: string, pClauseHash: string, pCurrentOffset?: number): void;
|
|
9
|
+
/**
|
|
10
|
+
* @param {UIEvent} pEvent
|
|
11
|
+
* @param {string} pClauseInformaryAddress
|
|
12
|
+
* @param {string} pClauseHash
|
|
13
|
+
* @param {number} [pOffset=0] - The offset for the search results, defaults to 0
|
|
14
|
+
*/
|
|
15
|
+
performSearch(pEvent: UIEvent, pClauseInformaryAddress: string, pClauseHash: string, pOffset?: number): void;
|
|
16
|
+
handleAdd(pEvent: any, pRecordLookupValue: any, pClauseInformaryAddress: any, pClauseHash: any): void;
|
|
17
|
+
handleRemove(pEvent: any, pRecordLookupValue: any, pClauseInformaryAddress: any, pClauseHash: any): void;
|
|
18
|
+
}
|
|
19
|
+
declare namespace ViewRecordSetSUBSETFilterInternalJoinSelectedValueList {
|
|
20
|
+
export { default_configuration };
|
|
21
|
+
}
|
|
22
|
+
import ViewRecordSetSUBSETFilterBase = require("./RecordSet-Filter-Base");
|
|
23
|
+
declare const default_configuration: any;
|
|
24
|
+
//# sourceMappingURL=RecordSet-Filter-InternalJoinSelectedValueList.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RecordSet-Filter-InternalJoinSelectedValueList.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-InternalJoinSelectedValueList.js"],"names":[],"mappings":";AA2EA;IA8CC;;;;OAIG;IACH,iBAJW,OAAO,2BACP,MAAM,eACN,MAAM,iCAKhB;IAED;;;;;OAKG;IACH,sBALW,OAAO,2BACP,MAAM,eACN,MAAM,YACN,MAAM,QA0DhB;IAED,sGA+CC;IAED,yGA2BC;CACD"}
|
|
@@ -11,10 +11,14 @@ export let InternalJoinNumericMatch: typeof import("./RecordSet-Filter-InternalJ
|
|
|
11
11
|
export let InternalJoinNumericRange: typeof import("./RecordSet-Filter-InternalJoinNumericRange.js");
|
|
12
12
|
export let InternalJoinStringMatch: typeof import("./RecordSet-Filter-InternalJoinStringMatch.js");
|
|
13
13
|
export let InternalJoinStringRange: typeof import("./RecordSet-Filter-InternalJoinStringRange.js");
|
|
14
|
+
export let InternalJoinSelectedValue: typeof import("./RecordSet-Filter-InternalJoinSelectedValue.js");
|
|
15
|
+
export let InternalJoinSelectedValueList: typeof import("./RecordSet-Filter-InternalJoinSelectedValueList.js");
|
|
14
16
|
export let ExternalJoinDateMatch: typeof import("./RecordSet-Filter-ExternalJoinDateMatch.js");
|
|
15
17
|
export let ExternalJoinDateRange: typeof import("./RecordSet-Filter-ExternalJoinDateRange.js");
|
|
16
18
|
export let ExternalJoinNumericMatch: typeof import("./RecordSet-Filter-ExternalJoinNumericMatch.js");
|
|
17
19
|
export let ExternalJoinNumericRange: typeof import("./RecordSet-Filter-ExternalJoinNumericRange.js");
|
|
18
20
|
export let ExternalJoinStringMatch: typeof import("./RecordSet-Filter-ExternalJoinStringMatch.js");
|
|
19
21
|
export let ExternalJoinStringRange: typeof import("./RecordSet-Filter-ExternalJoinStringRange.js");
|
|
22
|
+
export let ExternalJoinSelectedValue: typeof import("./RecordSet-Filter-ExternalJoinSelectedValue.js");
|
|
23
|
+
export let ExternalJoinSelectedValueList: typeof import("./RecordSet-Filter-ExternalJoinSelectedValueList.js");
|
|
20
24
|
//# sourceMappingURL=index.d.ts.map
|