pict-section-recordset 1.0.24 → 1.0.26

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.
Files changed (98) hide show
  1. package/example_applications/simple_entity/Simple-RecordSet-Application.js +170 -110
  2. package/package.json +7 -7
  3. package/source/application/Pict-Application-RecordSet.js +8 -0
  4. package/source/providers/RecordSet-Link-Manager.js +2 -2
  5. package/source/providers/RecordSet-RecordProvider-Base.js +9 -2
  6. package/source/providers/RecordSet-RecordProvider-MeadowEndpoints.js +116 -14
  7. package/source/services/RecordsSet-MetaController.js +41 -19
  8. package/source/templates/Pict-Template-FilterInstanceViews.js +222 -0
  9. package/source/templates/Pict-Template-FilterView.js +4 -2
  10. package/source/views/RecordSet-Filters.js +449 -0
  11. package/source/views/dashboard/RecordSet-Dashboard.js +65 -8
  12. package/source/views/filters/RecordSet-Filter-Base-Range.js +38 -0
  13. package/source/views/filters/RecordSet-Filter-Base.js +88 -0
  14. package/source/views/filters/RecordSet-Filter-DateMatch.js +56 -0
  15. package/source/views/filters/RecordSet-Filter-DateRange.js +75 -0
  16. package/source/views/filters/RecordSet-Filter-ExternalJoinDateMatch.js +55 -0
  17. package/source/views/filters/RecordSet-Filter-ExternalJoinDateRange.js +57 -0
  18. package/source/views/filters/RecordSet-Filter-ExternalJoinNumericMatch.js +54 -0
  19. package/source/views/filters/RecordSet-Filter-ExternalJoinNumericRange.js +57 -0
  20. package/source/views/filters/RecordSet-Filter-ExternalJoinStringMatch.js +45 -0
  21. package/source/views/filters/RecordSet-Filter-ExternalJoinStringRange.js +46 -0
  22. package/source/views/filters/RecordSet-Filter-InternalJoinDateMatch.js +55 -0
  23. package/source/views/filters/RecordSet-Filter-InternalJoinDateRange.js +57 -0
  24. package/source/views/filters/RecordSet-Filter-InternalJoinNumericMatch.js +55 -0
  25. package/source/views/filters/RecordSet-Filter-InternalJoinNumericRange.js +57 -0
  26. package/source/views/filters/RecordSet-Filter-InternalJoinStringMatch.js +45 -0
  27. package/source/views/filters/RecordSet-Filter-InternalJoinStringRange.js +46 -0
  28. package/source/views/filters/RecordSet-Filter-NumericMatch.js +55 -0
  29. package/source/views/filters/RecordSet-Filter-NumericRange.js +57 -0
  30. package/source/views/filters/RecordSet-Filter-StringMatch.js +45 -0
  31. package/source/views/filters/RecordSet-Filter-StringRange.js +46 -0
  32. package/source/views/filters/index.js +27 -0
  33. package/source/views/list/RecordSet-List.js +44 -6
  34. package/test/PictSectionRecordSet-RecordProvider-Meadow_tests.js +11 -0
  35. package/types/application/Pict-Application-RecordSet.d.ts.map +1 -1
  36. package/types/providers/RecordSet-DynamicRecordsetSolver.d.ts +6 -6
  37. package/types/providers/RecordSet-DynamicRecordsetSolver.d.ts.map +1 -1
  38. package/types/providers/RecordSet-Link-Manager.d.ts +3 -3
  39. package/types/providers/RecordSet-RecordProvider-Base.d.ts +9 -0
  40. package/types/providers/RecordSet-RecordProvider-Base.d.ts.map +1 -1
  41. package/types/providers/RecordSet-RecordProvider-MeadowEndpoints.d.ts +30 -4
  42. package/types/providers/RecordSet-RecordProvider-MeadowEndpoints.d.ts.map +1 -1
  43. package/types/services/RecordsSet-MetaController.d.ts +2 -2
  44. package/types/services/RecordsSet-MetaController.d.ts.map +1 -1
  45. package/types/templates/Pict-Template-FilterInstanceViews.d.ts +19 -0
  46. package/types/templates/Pict-Template-FilterInstanceViews.d.ts.map +1 -0
  47. package/types/templates/Pict-Template-FilterView.d.ts.map +1 -1
  48. package/types/views/RecordSet-Filters.d.ts +84 -0
  49. package/types/views/RecordSet-Filters.d.ts.map +1 -0
  50. package/types/views/dashboard/RecordSet-Dashboard.d.ts +4 -2
  51. package/types/views/dashboard/RecordSet-Dashboard.d.ts.map +1 -1
  52. package/types/views/filters/RecordSet-Filter-Base-Range.d.ts +5 -0
  53. package/types/views/filters/RecordSet-Filter-Base-Range.d.ts.map +1 -0
  54. package/types/views/filters/RecordSet-Filter-Base.d.ts +29 -0
  55. package/types/views/filters/RecordSet-Filter-Base.d.ts.map +1 -0
  56. package/types/views/filters/RecordSet-Filter-DateMatch.d.ts +9 -0
  57. package/types/views/filters/RecordSet-Filter-DateMatch.d.ts.map +1 -0
  58. package/types/views/filters/RecordSet-Filter-DateRange.d.ts +9 -0
  59. package/types/views/filters/RecordSet-Filter-DateRange.d.ts.map +1 -0
  60. package/types/views/filters/RecordSet-Filter-ExternalJoinDateMatch.d.ts +9 -0
  61. package/types/views/filters/RecordSet-Filter-ExternalJoinDateMatch.d.ts.map +1 -0
  62. package/types/views/filters/RecordSet-Filter-ExternalJoinDateRange.d.ts +9 -0
  63. package/types/views/filters/RecordSet-Filter-ExternalJoinDateRange.d.ts.map +1 -0
  64. package/types/views/filters/RecordSet-Filter-ExternalJoinNumericMatch.d.ts +9 -0
  65. package/types/views/filters/RecordSet-Filter-ExternalJoinNumericMatch.d.ts.map +1 -0
  66. package/types/views/filters/RecordSet-Filter-ExternalJoinNumericRange.d.ts +9 -0
  67. package/types/views/filters/RecordSet-Filter-ExternalJoinNumericRange.d.ts.map +1 -0
  68. package/types/views/filters/RecordSet-Filter-ExternalJoinStringMatch.d.ts +9 -0
  69. package/types/views/filters/RecordSet-Filter-ExternalJoinStringMatch.d.ts.map +1 -0
  70. package/types/views/filters/RecordSet-Filter-ExternalJoinStringRange.d.ts +9 -0
  71. package/types/views/filters/RecordSet-Filter-ExternalJoinStringRange.d.ts.map +1 -0
  72. package/types/views/filters/RecordSet-Filter-InternalJoinDateMatch.d.ts +9 -0
  73. package/types/views/filters/RecordSet-Filter-InternalJoinDateMatch.d.ts.map +1 -0
  74. package/types/views/filters/RecordSet-Filter-InternalJoinDateRange.d.ts +9 -0
  75. package/types/views/filters/RecordSet-Filter-InternalJoinDateRange.d.ts.map +1 -0
  76. package/types/views/filters/RecordSet-Filter-InternalJoinNumericMatch.d.ts +9 -0
  77. package/types/views/filters/RecordSet-Filter-InternalJoinNumericMatch.d.ts.map +1 -0
  78. package/types/views/filters/RecordSet-Filter-InternalJoinNumericRange.d.ts +9 -0
  79. package/types/views/filters/RecordSet-Filter-InternalJoinNumericRange.d.ts.map +1 -0
  80. package/types/views/filters/RecordSet-Filter-InternalJoinStringMatch.d.ts +9 -0
  81. package/types/views/filters/RecordSet-Filter-InternalJoinStringMatch.d.ts.map +1 -0
  82. package/types/views/filters/RecordSet-Filter-InternalJoinStringRange.d.ts +9 -0
  83. package/types/views/filters/RecordSet-Filter-InternalJoinStringRange.d.ts.map +1 -0
  84. package/types/views/filters/RecordSet-Filter-NumericMatch.d.ts +9 -0
  85. package/types/views/filters/RecordSet-Filter-NumericMatch.d.ts.map +1 -0
  86. package/types/views/filters/RecordSet-Filter-NumericRange.d.ts +9 -0
  87. package/types/views/filters/RecordSet-Filter-NumericRange.d.ts.map +1 -0
  88. package/types/views/filters/RecordSet-Filter-StringMatch.d.ts +9 -0
  89. package/types/views/filters/RecordSet-Filter-StringMatch.d.ts.map +1 -0
  90. package/types/views/filters/RecordSet-Filter-StringRange.d.ts +9 -0
  91. package/types/views/filters/RecordSet-Filter-StringRange.d.ts.map +1 -0
  92. package/types/views/filters/index.d.ts +20 -0
  93. package/types/views/filters/index.d.ts.map +1 -0
  94. package/types/views/list/RecordSet-List.d.ts +12 -2
  95. package/types/views/list/RecordSet-List.d.ts.map +1 -1
  96. package/source/views/RecordSet-Filter.js +0 -159
  97. package/types/views/RecordSet-Filter.d.ts +0 -39
  98. package/types/views/RecordSet-Filter.d.ts.map +0 -1
@@ -1 +1 @@
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;IAkBE,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;;;;;;OAMG;IACH,8BAJW,eAAe,GAEd,OAAO,CAAC,eAAe,CAAC,CAOnC;IAED;;;;;;;OAOG;IACH,iCALW,MAAM,YACN,MAAM,cACN,MAAM,GACL,OAAO,CAAC,eAAe,CAAC,CAMnC;IAED;;;;OAIG;IACH,4BAFW,eAAe;;OAMzB;IAED;;;;;OAKG;IACH,sBAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAClB,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAMvC;IAED;;;;;OAKG;IACH,sBAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAClB,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAMvC;IAED;;;;;OAKG;IACH,sBAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAClB,OAAO,CAAC,IAAI,CAAC,CAKxB;IAED;;;;OAIG;IACH,sBAFW,MAAM,GAAC,MAAM,eAMvB;IAED;;;;;OAKG;IACH,sBAHW,eAAe,GACd,OAAO,CAAC,eAAe,CAAC,CAMnC;IAED;;;;;OAKG;IACH,qBAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAClB,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAKvC;IAED;;;;OAIG;IACH,qBAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,uBAK7B;IAED;;OAEG;IACH,oBAFY,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAK9B;IAED;;;;;OAKG;IACH,8BAHW,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,GACzB,OAAO,CAAC,IAAI,CAAC,CAIxB;CACD;;;;;AA9OD;;;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"}
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,oBAJW,OAAO,MAAM,CAAC,aACd,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,iBACnB,MAAM,EAchB;IAJA,6BAA6B;IAC7B,OADW,OAAO,MAAM,CAAC,CACf;IACV,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IAGV;;;;OAIG;IACH,qBAFW,MAAM,GAAC,MAAM,eAMvB;IAED;;;;OAIG;IACH,uBAFW,MAAM,GAAC,MAAM,eAMvB;IASD;;;;;OAKG;IACH,qBAHW,eAAe,GACd,OAAO,CAAC,eAAe,CAAC,CAMnC;IAED;;;;;;OAMG;IACH,8BAJW,eAAe,GAEd,OAAO,CAAC,eAAe,CAAC,CAOnC;IAED;;;;;;;OAOG;IACH,iCALW,MAAM,YACN,MAAM,cACN,MAAM,GACL,OAAO,CAAC,eAAe,CAAC,CAMnC;IAED;;;;OAIG;IACH,4BAFW,eAAe;;OAMzB;IAED;;;;;OAKG;IACH,sBAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAClB,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAMvC;IAED;;;;;OAKG;IACH,sBAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAClB,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAMvC;IAED;;;;;OAKG;IACH,sBAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAClB,OAAO,CAAC,IAAI,CAAC,CAKxB;IAED;;;;OAIG;IACH,sBAFW,MAAM,GAAC,MAAM,eAMvB;IAED;;;;;OAKG;IACH,sBAHW,eAAe,GACd,OAAO,CAAC,eAAe,CAAC,CAMnC;IAED;;;;;OAKG;IACH,qBAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAClB,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAKvC;IAED;;;;OAIG;IACH,qBAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,uBAK7B;IAED;;OAEG;IACH,oBAFY,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAK9B;IAED;;;;;OAKG;IACH,8BAHW,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,GACzB,OAAO,CAAC,IAAI,CAAC,CAIxB;CACD;;;;;AArPD;;;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"}
@@ -39,16 +39,37 @@ declare class MeadowEndpointsRecordSetProvider extends libRecordSetProviderBase
39
39
  RecordSetProviderMeadowEndpoints: typeof MeadowEndpointsRecordSetProvider;
40
40
  }>;
41
41
  };
42
+ fable: import("pict") & {
43
+ log: any;
44
+ services: {
45
+ PictSectionRecordSet: InstanceType<{
46
+ new (pFable: any, pOptions: any, pServiceHash: any): import("../services/RecordsSet-MetaController.js");
47
+ default_configuration: Record<string, any>;
48
+ PictRecordSetApplication: typeof import("../application/Pict-Application-RecordSet.js");
49
+ RecordSetProviderBase: typeof libRecordSetProviderBase;
50
+ RecordSetProviderMeadowEndpoints: typeof MeadowEndpointsRecordSetProvider;
51
+ }>;
52
+ [key: string]: any;
53
+ };
54
+ instantiateServiceProviderWithoutRegistration: (hash: string) => any;
55
+ PictSectionRecordSet: InstanceType<{
56
+ new (pFable: any, pOptions: any, pServiceHash: any): import("../services/RecordsSet-MetaController.js");
57
+ default_configuration: Record<string, any>;
58
+ PictRecordSetApplication: typeof import("../application/Pict-Application-RecordSet.js");
59
+ RecordSetProviderBase: typeof libRecordSetProviderBase;
60
+ RecordSetProviderMeadowEndpoints: typeof MeadowEndpointsRecordSetProvider;
61
+ }>;
62
+ };
42
63
  /** @type {Record<string, any>} */
43
64
  _Schema: Record<string, any>;
65
+ /** @type {Record<string, Record<string, any>>} */
66
+ _Experiences: Record<string, Record<string, any>>;
67
+ /** @type {Record<string, Record<string, any>>} */
68
+ _FiltersByField: Record<string, Record<string, any>>;
44
69
  /** @return {import('pict/types/source/Pict-Meadow-EntityProvider.js')} */
45
70
  get entityProvider(): import("pict/types/source/Pict-Meadow-EntityProvider.js");
46
71
  /** @type {import('pict/types/source/Pict-Meadow-EntityProvider.js')} */
47
72
  _EntityProvider: import("pict/types/source/Pict-Meadow-EntityProvider.js");
48
- /**
49
- * @typedef {(error?: Error, result?: T) => void} RecordSetCallback
50
- * @template T = Record<string, any>
51
- */
52
73
  /**
53
74
  * Get a record by its ID or GUID.
54
75
  *
@@ -61,6 +82,7 @@ declare class MeadowEndpointsRecordSetProvider extends libRecordSetProviderBase
61
82
  * @param {string|number} pGuid - The ID or GUID of the record.
62
83
  */
63
84
  getRecordByGUID(pGuid: string | number): Promise<any>;
85
+ _prepareFilterState(pEntity: any, pOptions: any, pFilterExperienceResultAddress?: string): any[];
64
86
  /**
65
87
  * Read records from the provider.
66
88
  *
@@ -101,6 +123,10 @@ declare class MeadowEndpointsRecordSetProvider extends libRecordSetProviderBase
101
123
  * @param {(error?: Error) => void} fCallback - The callback function.
102
124
  */
103
125
  onInitializeAsync(fCallback: (error?: Error) => void): void;
126
+ /**
127
+ * @param {(error?: Error) => void} fCallback - The callback function.
128
+ */
129
+ initializeEntitySchema(fCallback: (error?: Error) => void): void;
104
130
  getRecordSchema(): Promise<Record<string, any>>;
105
131
  }
106
132
  declare namespace MeadowEndpointsRecordSetProvider {
@@ -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;IAgBE;;;;;;;;;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;IAMT,kCAAkC;IAClC,SADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CACZ;IAGnB,0EAA0E;IAC1E,sBADa,OAAO,iDAAiD,CAAC,CAWrE;IARA,wEAAwE;IAExE,iBAFW,OAAO,iDAAiD,CAAC,CAE4B;IAQjG;;;OAGG;IAEH;;;;OAIG;IACH,qBAFW,MAAM,GAAC,MAAM,gBA4BvB;IAED;;;;OAIG;IACH,uBAFW,MAAM,GAAC,MAAM,gBA2BvB;IA8CD;;;;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,QA2BjC;IAED,gDAcC;CAsCD;;;;;uBAvZY,OAAO,oCAAoC,EAAE,eAAe;uBAC5D,OAAO,oCAAoC,EAAE,eAAe"}
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,CACZ;IAClB,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,CAWrE;IARA,wEAAwE;IAExE,iBAFW,OAAO,iDAAiD,CAAC,CAE4B;IAQjG;;;;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;;OAEG;IACH,6BAFW,CAAC,KAAK,CAAC,EAAE,KAAK,KAAK,IAAI,QAgFjC;IAED;;OAEG;IACH,kCAFW,CAAC,KAAK,CAAC,EAAE,KAAK,KAAK,IAAI,QA2BjC;IAED,gDAcC;CAsCD;;;;;uBA7fY,OAAO,oCAAoC,EAAE,eAAe;uBAC5D,OAAO,oCAAoC,EAAE,eAAe"}
@@ -33,7 +33,7 @@ declare class RecordSetMetacontroller {
33
33
  /** @type {Record<string, Record<string, any>>} */
34
34
  manifestDefinitions: Record<string, Record<string, any>>;
35
35
  /** @type {Record<string, import('manyfest')>} */
36
- manifests: Record<string, any>;
36
+ manifests: Record<string, import("manyfest")>;
37
37
  has_initialized: boolean;
38
38
  /**
39
39
  * @return {Record<string, any>} - The registered configuration for the RecordSet
@@ -47,7 +47,7 @@ declare class RecordSetMetacontroller {
47
47
  checkSession(pCapability: any): Promise<boolean>;
48
48
  addRecordLinkTemplate(pNameTemplate: any, pURLTemplate: any, pDefault: any): any;
49
49
  initialize(): true | this;
50
- getManifest(pScope: any): any;
50
+ getManifest(pScope: any): import("manyfest");
51
51
  /**
52
52
  * @param {Record<string, any>} pManifest - The manifest to generate table cells for.
53
53
  */
@@ -1 +1 @@
1
- {"version":3,"file":"RecordsSet-MetaController.d.ts","sourceRoot":"","sources":["../../source/services/RecordsSet-MetaController.js"],"names":[],"mappings":";AAsBA;IAEC,2DAuCC;IAlCA,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,GAAkB,CAAC,CACG;IAEhD,yBAA4B;IA8B7B;;OAEG;IACH,4CAFY,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAK9B;IAED,kEA0FC;IAED,4EAmBC;IAED,kFAyCC;IAED,yDAaC;IAED,qCAMC;IAED,iDAUC;IAED,iFAGC;IAED,0BAyDC;IAED,8BAGC;IAED;;OAEG;IACH,sCAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,QAwC7B;CAED;;;;AAnYD,kCAAkC;AAClC,sCADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAI3B"}
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;;OAEG;IACH,4CAFY,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAK9B;IAED,kEA0FC;IAED,4EAmBC;IAED,kFAyCC;IAED,yDAaC;IAED,qCAMC;IAED,iDAUC;IAED,iFAGC;IAED,0BA0EC;IAED,6CAGC;IAED;;OAEG;IACH,sCAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,QAwC7B;CAED;;;;AAzZD,kCAAkC;AAClC,sCADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAI3B"}
@@ -0,0 +1,19 @@
1
+ export = PictTemplateFilterInstanceViewInstruction;
2
+ /**
3
+ * Specialized instruction for rendering the filter view and plumbing in required context.
4
+ *
5
+ * Based on the Pict base {~V:...~} template instruction.
6
+ */
7
+ declare class PictTemplateFilterInstanceViewInstruction extends libPictTemplate {
8
+ /**
9
+ * @param {Object} pFable - The Fable Framework instance
10
+ * @param {Object} pOptions - The options for the service
11
+ * @param {String} pServiceHash - The hash of the service
12
+ */
13
+ constructor(pFable: any, pOptions: any, pServiceHash: string);
14
+ /** @type {any} */
15
+ log: any;
16
+ _getViewForFilterClauses(pClauses: any): import("../views/filters/RecordSet-Filter-Base.js");
17
+ }
18
+ import libPictTemplate = require("pict-template");
19
+ //# sourceMappingURL=Pict-Template-FilterInstanceViews.d.ts.map
@@ -0,0 +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,6FAiBC;CA0KD"}
@@ -1 +1 @@
1
- {"version":3,"file":"Pict-Template-FilterView.d.ts","sourceRoot":"","sources":["../../source/templates/Pict-Template-FilterView.js"],"names":[],"mappings":";AAEA;;;;GAIG;AACH;IAEC;;;;OAIG;IACH,8DAeC;IAXA,kBAAkB;IAClB,KADW,GAAG,CACN;CAsJT"}
1
+ {"version":3,"file":"Pict-Template-FilterView.d.ts","sourceRoot":"","sources":["../../source/templates/Pict-Template-FilterView.js"],"names":[],"mappings":";AAEA;;;;GAIG;AACH;IAEC;;;;OAIG;IACH,8DAeC;IAXA,kBAAkB;IAClB,KADW,GAAG,CACN;CAwJT"}
@@ -0,0 +1,84 @@
1
+ export = ViewRecordSetSUBSETFilters;
2
+ declare class ViewRecordSetSUBSETFilters extends libPictView {
3
+ constructor(pFable: any, pOptions: any, pServiceHash: any);
4
+ /** @type {import('fable') & import('pict') & { PictSectionRecordSet: import('../Pict-Section-RecordSet.js') }} */
5
+ pict: any & import("pict") & {
6
+ PictSectionRecordSet: {
7
+ new (pFable: any, pOptions: any, pServiceHash: any): import("../services/RecordsSet-MetaController.js");
8
+ default_configuration: Record<string, any>;
9
+ PictRecordSetApplication: typeof import("../application/Pict-Application-RecordSet.js");
10
+ RecordSetProviderBase: typeof import("../providers/RecordSet-RecordProvider-Base.js");
11
+ RecordSetProviderMeadowEndpoints: typeof import("../providers/RecordSet-RecordProvider-MeadowEndpoints.js");
12
+ };
13
+ };
14
+ chars: string;
15
+ lookup: any[] | Uint8Array<ArrayBuffer>;
16
+ /**
17
+ * Marshals data from the view to the model, usually AppData (or configured data store).
18
+ *
19
+ * @returns {any} The result of the superclass's onMarshalFromView method.
20
+ */
21
+ onMarshalFromView(): any;
22
+ /**
23
+ * Marshals the data to the view from the model, usually AppData (or configured data store).
24
+ *
25
+ * @returns {any} The result of the super.onMarshalToView() method.
26
+ */
27
+ onMarshalToView(): any;
28
+ /**
29
+ * @param {Event} pEvent - The DOM event that triggered the search
30
+ * @param {string} pRecordSet - The record set being filtered
31
+ * @param {string} pViewContext - The view context for the filter (ex. List, Dashboard)
32
+ */
33
+ handleSearch(pEvent: Event, pRecordSet: string, pViewContext: string): void;
34
+ /**
35
+ * @param {string} pRecordSet - The record set being filtered
36
+ * @param {string} pViewContext - The view context for the filter (ex. List, Dashboard)
37
+ * @param {string} [pFilterString] - The filter string to apply, defaults to a single space if not provided
38
+ */
39
+ performSearch(pRecordSet: string, pViewContext: string, pFilterString?: string): void;
40
+ /**
41
+ * @param {Event} pEvent - The DOM event that triggered the search
42
+ * @param {string} pRecordSet - The record set being filtered
43
+ * @param {string} pViewContext - The view context for the filter (ex. List, Dashboard)
44
+ */
45
+ handleReset(pEvent: Event, pRecordSet: string, pViewContext: string): void;
46
+ serializeFilterExperience(pExperience: any): Promise<string>;
47
+ /**
48
+ * @param {string} pExperience - The serialized filter experience as a string.
49
+ *
50
+ * @return {Promise<Record<string, any>>} - The serialized filter experience as a string.
51
+ */
52
+ deserializeFilterExperience(pExperience: string): Promise<Record<string, any>>;
53
+ /**
54
+ * @param {string} string - The string to compress.
55
+ * @param {CompressionFormat} [encoding='gzip'] - The encoding to use for compression, defaults to 'gzip'.
56
+ *
57
+ * @return {Promise<ArrayBuffer>} - The compressed byte array.
58
+ */
59
+ compress(string: string, encoding?: CompressionFormat): Promise<ArrayBuffer>;
60
+ /**
61
+ * @param {Uint8Array} byteArray - The byte array to decompress.
62
+ * @param {CompressionFormat} [encoding='gzip'] - The encoding to use for compression, defaults to 'gzip'.
63
+ */
64
+ decompress(byteArray: Uint8Array, encoding?: CompressionFormat): Promise<string>;
65
+ /**
66
+ * @param {ArrayBuffer} arraybuffer - The ArrayBuffer to encode to Base64.
67
+ *
68
+ * @return {string} - The Base64 encoded string.
69
+ */
70
+ encode(arraybuffer: ArrayBuffer): string;
71
+ /**
72
+ * @param {string} base64 - The Base64 encoded string to decode to an ArrayBuffer.
73
+ *
74
+ * @return {ArrayBuffer} - The decoded ArrayBuffer.
75
+ */
76
+ decode(base64: string): ArrayBuffer;
77
+ }
78
+ declare namespace ViewRecordSetSUBSETFilters {
79
+ export { _DEFAULT_CONFIGURATION_SUBSET_Filter as default_configuration };
80
+ }
81
+ import libPictView = require("pict-view");
82
+ /** @type {Record<string, any>} */
83
+ declare const _DEFAULT_CONFIGURATION_SUBSET_Filter: Record<string, any>;
84
+ //# sourceMappingURL=RecordSet-Filters.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filters.d.ts","sourceRoot":"","sources":["../../source/views/RecordSet-Filters.js"],"names":[],"mappings":";AAqFA;IAEC,2DA8DC;IA1DA,kHAAkH;IAClH,MADW,GAAe,GAAG,OAAO,MAAM,CAAC,GAAG;QAAE,oBAAoB,EAAE;;;;;;SAAsC,CAAA;KAAE,CACrG;IAiDT,cAA+E;IAG/E,wCAA0E;IAU3E;;;;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,QA+ChB;IAED;;;;OAIG;IACH,oBAJW,KAAK,cACL,MAAM,gBACN,MAAM,QAgBhB;IAsCD,6DAOC;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;;;;;AAzbD,kCAAkC;AAClC,oDADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CA8E5B"}
@@ -22,22 +22,24 @@ declare class viewRecordSetDashboard extends libPictRecordSetRecordView {
22
22
  * @param {Record<string, any>} pRecordSetConfiguration
23
23
  * @param {string} pProviderHash
24
24
  * @param {string} pFilterString
25
+ * @param {string} pSerializedFilterExperience
25
26
  * @param {number} pOffset
26
27
  * @param {number} pPageSize
27
28
  *
28
29
  * @return {Promise<void>}
29
30
  */
30
- renderSpecificDashboard(pDashboardHash: string, pRecordSetConfiguration: Record<string, any>, pProviderHash: string, pFilterString: string, pOffset: number, pPageSize: number): Promise<void>;
31
+ renderSpecificDashboard(pDashboardHash: string, pRecordSetConfiguration: Record<string, any>, pProviderHash: string, pFilterString: string, pSerializedFilterExperience: string, pOffset: number, pPageSize: number): Promise<void>;
31
32
  /**
32
33
  * @param {Record<string, any>} pRecordSetConfiguration
33
34
  * @param {string} pProviderHash
34
35
  * @param {string} pFilterString
36
+ * @param {string} pSerializedFilterExperience
35
37
  * @param {number} pOffset
36
38
  * @param {number} pPageSize
37
39
  *
38
40
  * @return {Promise<void>}
39
41
  */
40
- renderDashboard(pRecordSetConfiguration: Record<string, any>, pProviderHash: string, pFilterString: string, pOffset: number, pPageSize: number): Promise<void>;
42
+ renderDashboard(pRecordSetConfiguration: Record<string, any>, pProviderHash: string, pFilterString: string, pSerializedFilterExperience: string, pOffset: number, pPageSize: number): Promise<void>;
41
43
  }
42
44
  declare namespace viewRecordSetDashboard {
43
45
  export { _DEFAULT_CONFIGURATION__Dashboard as default_configuration };
@@ -1 +1 @@
1
- {"version":3,"file":"RecordSet-Dashboard.d.ts","sourceRoot":"","sources":["../../../source/views/dashboard/RecordSet-Dashboard.js"],"names":[],"mappings":";AA0EA;IAOE;;;;;;;;MAQC;IAGF,iEAsCC;IAED;;OAEG;IACH,qCAeC;IAED,8CAGC;IAED,sDAuCC;IAnCA,iCAUC;IA2BF;;;;;;;;;OASG;IACH,wCATW,MAAM,2BACN,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,iBACnB,MAAM,iBACN,MAAM,WACN,MAAM,aACN,MAAM,GAEL,OAAO,CAAC,IAAI,CAAC,CAwPxB;IAED;;;;;;;;OAQG;IACH,yCARW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,iBACnB,MAAM,iBACN,MAAM,WACN,MAAM,aACN,MAAM,GAEL,OAAO,CAAC,IAAI,CAAC,CAqPxB;CAwBD;;;;;AAjtBD,kCAAkC;AAClC,iDADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CA6D1B"}
1
+ {"version":3,"file":"RecordSet-Dashboard.d.ts","sourceRoot":"","sources":["../../../source/views/dashboard/RecordSet-Dashboard.js"],"names":[],"mappings":";AA0EA;IAOE;;;;;;;;MAQC;IAGF,iEAuCC;IAED;;OAEG;IACH,qCAuBC;IAED,8CAGC;IAED,sDAuCC;IAnCA,iCAUC;IA2BF;;;;;;;;;;OAUG;IACH,wCAVW,MAAM,2BACN,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,iBACnB,MAAM,iBACN,MAAM,+BACN,MAAM,WACN,MAAM,aACN,MAAM,GAEL,OAAO,CAAC,IAAI,CAAC,CA+QxB;IAED;;;;;;;;;OASG;IACH,yCATW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,iBACnB,MAAM,iBACN,MAAM,+BACN,MAAM,WACN,MAAM,aACN,MAAM,GAEL,OAAO,CAAC,IAAI,CAAC,CA4QxB;CAwBD;;;;;AA1wBD,kCAAkC;AAClC,iDADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CA6D1B"}
@@ -0,0 +1,5 @@
1
+ export = ViewRecordSetSUBSETFilterBaseRange;
2
+ declare class ViewRecordSetSUBSETFilterBaseRange extends ViewRecordSetSUBSETFilterBase {
3
+ }
4
+ import ViewRecordSetSUBSETFilterBase = require("./RecordSet-Filter-Base");
5
+ //# sourceMappingURL=RecordSet-Filter-Base-Range.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-Base-Range.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-Base-Range.js"],"names":[],"mappings":";AAGA;CAgCC"}
@@ -0,0 +1,29 @@
1
+ export = ViewRecordSetSUBSETFilterBase;
2
+ declare class ViewRecordSetSUBSETFilterBase extends libPictView {
3
+ constructor(pFable: any, pOptions: any, pServiceHash: any);
4
+ /** @type {import('pict') & { log: any, instantiateServiceProviderWithoutRegistration: (hash: String) => any, PictSectionRecordSet: import('../../Pict-Section-RecordSet.js') }} */
5
+ pict: import("pict") & {
6
+ log: any;
7
+ instantiateServiceProviderWithoutRegistration: (hash: string) => any;
8
+ PictSectionRecordSet: {
9
+ new (pFable: any, pOptions: any, pServiceHash: any): import("../../services/RecordsSet-MetaController.js");
10
+ default_configuration: Record<string, any>;
11
+ PictRecordSetApplication: typeof import("../../application/Pict-Application-RecordSet.js");
12
+ RecordSetProviderBase: typeof import("../../providers/RecordSet-RecordProvider-Base.js");
13
+ RecordSetProviderMeadowEndpoints: typeof import("../../providers/RecordSet-RecordProvider-MeadowEndpoints.js");
14
+ };
15
+ };
16
+ /**
17
+ * Hook to prepare state on the render record before rendering.
18
+ *
19
+ * @param {Record<string, any>} pRecord - The record used for view rendering.
20
+ */
21
+ prepareRecord(pRecord: Record<string, any>): void;
22
+ }
23
+ declare namespace ViewRecordSetSUBSETFilterBase {
24
+ export { _DEFAULT_CONFIGURATION_SUBSET_Filter as default_configuration };
25
+ }
26
+ import libPictView = require("pict-view");
27
+ /** @type {Record<string, any>} */
28
+ declare const _DEFAULT_CONFIGURATION_SUBSET_Filter: Record<string, any>;
29
+ //# sourceMappingURL=RecordSet-Filter-Base.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-Base.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-Base.js"],"names":[],"mappings":";AAoDA;IAEC,2DAMC;IAFA,mLAAmL;IACnL,MADW,OAAO,MAAM,CAAC,GAAG;QAAE,GAAG,EAAE,GAAG,CAAC;QAAC,6CAA6C,EAAE,CAAC,IAAI,QAAQ,KAAK,GAAG,CAAC;QAAC,oBAAoB,EAAE;;;;;;SAAyC,CAAA;KAAE,CACtK;IAGV;;;;OAIG;IACH,uBAFW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,QAgB7B;CACD;;;;;AAhFD,kCAAkC;AAClC,oDADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAgD5B"}
@@ -0,0 +1,9 @@
1
+ export = ViewRecordSetSUBSETFilterDateMatch;
2
+ declare class ViewRecordSetSUBSETFilterDateMatch extends ViewRecordSetSUBSETFilterBase {
3
+ }
4
+ declare namespace ViewRecordSetSUBSETFilterDateMatch {
5
+ export { default_configuration };
6
+ }
7
+ import ViewRecordSetSUBSETFilterBase = require("./RecordSet-Filter-Base");
8
+ declare const default_configuration: any;
9
+ //# sourceMappingURL=RecordSet-Filter-DateMatch.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-DateMatch.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-DateMatch.js"],"names":[],"mappings":";AAkCA;CAiBC"}
@@ -0,0 +1,9 @@
1
+ export = ViewRecordSetSUBSETFilterDateRange;
2
+ declare class ViewRecordSetSUBSETFilterDateRange extends ViewRecordSetSUBSETFilterBaseRange {
3
+ }
4
+ declare namespace ViewRecordSetSUBSETFilterDateRange {
5
+ export { default_configuration };
6
+ }
7
+ import ViewRecordSetSUBSETFilterBaseRange = require("./RecordSet-Filter-Base-Range.js");
8
+ declare const default_configuration: any;
9
+ //# sourceMappingURL=RecordSet-Filter-DateRange.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-DateRange.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-DateRange.js"],"names":[],"mappings":";AAmCA;CAkCC"}
@@ -0,0 +1,9 @@
1
+ export = ViewRecordSetSUBSETFilterExternalJoinDateMatch;
2
+ declare class ViewRecordSetSUBSETFilterExternalJoinDateMatch extends ViewRecordSetSUBSETFilterBase {
3
+ }
4
+ declare namespace ViewRecordSetSUBSETFilterExternalJoinDateMatch {
5
+ export { default_configuration };
6
+ }
7
+ import ViewRecordSetSUBSETFilterBase = require("./RecordSet-Filter-Base");
8
+ declare const default_configuration: any;
9
+ //# sourceMappingURL=RecordSet-Filter-ExternalJoinDateMatch.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-ExternalJoinDateMatch.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-ExternalJoinDateMatch.js"],"names":[],"mappings":";AAkCA;CAgBC"}
@@ -0,0 +1,9 @@
1
+ export = ViewRecordSetSUBSETFilterExternalJoinDateRange;
2
+ declare class ViewRecordSetSUBSETFilterExternalJoinDateRange extends ViewRecordSetSUBSETFilterBaseRange {
3
+ }
4
+ declare namespace ViewRecordSetSUBSETFilterExternalJoinDateRange {
5
+ export { default_configuration };
6
+ }
7
+ import ViewRecordSetSUBSETFilterBaseRange = require("./RecordSet-Filter-Base-Range.js");
8
+ declare const default_configuration: any;
9
+ //# sourceMappingURL=RecordSet-Filter-ExternalJoinDateRange.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-ExternalJoinDateRange.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-ExternalJoinDateRange.js"],"names":[],"mappings":";AAmCA;CAiBC"}
@@ -0,0 +1,9 @@
1
+ export = ViewRecordSetSUBSETFilterExternalJoinNumericMatch;
2
+ declare class ViewRecordSetSUBSETFilterExternalJoinNumericMatch extends ViewRecordSetSUBSETFilterBase {
3
+ }
4
+ declare namespace ViewRecordSetSUBSETFilterExternalJoinNumericMatch {
5
+ export { default_configuration };
6
+ }
7
+ import ViewRecordSetSUBSETFilterBase = require("./RecordSet-Filter-Base");
8
+ declare const default_configuration: any;
9
+ //# sourceMappingURL=RecordSet-Filter-ExternalJoinNumericMatch.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-ExternalJoinNumericMatch.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-ExternalJoinNumericMatch.js"],"names":[],"mappings":";AAiCA;CAgBC"}
@@ -0,0 +1,9 @@
1
+ export = ViewRecordSetSUBSETFilterExternalJoinNumericRange;
2
+ declare class ViewRecordSetSUBSETFilterExternalJoinNumericRange extends ViewRecordSetSUBSETFilterBaseRange {
3
+ }
4
+ declare namespace ViewRecordSetSUBSETFilterExternalJoinNumericRange {
5
+ export { default_configuration };
6
+ }
7
+ import ViewRecordSetSUBSETFilterBaseRange = require("./RecordSet-Filter-Base-Range.js");
8
+ declare const default_configuration: any;
9
+ //# sourceMappingURL=RecordSet-Filter-ExternalJoinNumericRange.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-ExternalJoinNumericRange.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-ExternalJoinNumericRange.js"],"names":[],"mappings":";AAmCA;CAiBC"}
@@ -0,0 +1,9 @@
1
+ export = ViewRecordSetSUBSETFilterExternalJoinStringMatch;
2
+ declare class ViewRecordSetSUBSETFilterExternalJoinStringMatch extends ViewRecordSetSUBSETFilterBase {
3
+ }
4
+ declare namespace ViewRecordSetSUBSETFilterExternalJoinStringMatch {
5
+ export { default_configuration };
6
+ }
7
+ import ViewRecordSetSUBSETFilterBase = require("./RecordSet-Filter-Base.js");
8
+ declare const default_configuration: any;
9
+ //# sourceMappingURL=RecordSet-Filter-ExternalJoinStringMatch.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-ExternalJoinStringMatch.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-ExternalJoinStringMatch.js"],"names":[],"mappings":";AAkCA;CAMC"}
@@ -0,0 +1,9 @@
1
+ export = ViewRecordSetSUBSETFilterExternalJoinStringRange;
2
+ declare class ViewRecordSetSUBSETFilterExternalJoinStringRange extends ViewRecordSetSUBSETFilterBaseRange {
3
+ }
4
+ declare namespace ViewRecordSetSUBSETFilterExternalJoinStringRange {
5
+ export { default_configuration };
6
+ }
7
+ import ViewRecordSetSUBSETFilterBaseRange = require("./RecordSet-Filter-Base-Range.js");
8
+ declare const default_configuration: any;
9
+ //# sourceMappingURL=RecordSet-Filter-ExternalJoinStringRange.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-ExternalJoinStringRange.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-ExternalJoinStringRange.js"],"names":[],"mappings":";AAmCA;CAMC"}
@@ -0,0 +1,9 @@
1
+ export = ViewRecordSetSUBSETFilterInternalJoinDateMatch;
2
+ declare class ViewRecordSetSUBSETFilterInternalJoinDateMatch extends ViewRecordSetSUBSETFilterBase {
3
+ }
4
+ declare namespace ViewRecordSetSUBSETFilterInternalJoinDateMatch {
5
+ export { default_configuration };
6
+ }
7
+ import ViewRecordSetSUBSETFilterBase = require("./RecordSet-Filter-Base");
8
+ declare const default_configuration: any;
9
+ //# sourceMappingURL=RecordSet-Filter-InternalJoinDateMatch.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-InternalJoinDateMatch.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-InternalJoinDateMatch.js"],"names":[],"mappings":";AAkCA;CAgBC"}
@@ -0,0 +1,9 @@
1
+ export = ViewRecordSetSUBSETFilterInternalJoinDateRange;
2
+ declare class ViewRecordSetSUBSETFilterInternalJoinDateRange extends ViewRecordSetSUBSETFilterBaseRange {
3
+ }
4
+ declare namespace ViewRecordSetSUBSETFilterInternalJoinDateRange {
5
+ export { default_configuration };
6
+ }
7
+ import ViewRecordSetSUBSETFilterBaseRange = require("./RecordSet-Filter-Base-Range.js");
8
+ declare const default_configuration: any;
9
+ //# sourceMappingURL=RecordSet-Filter-InternalJoinDateRange.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-InternalJoinDateRange.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-InternalJoinDateRange.js"],"names":[],"mappings":";AAmCA;CAiBC"}
@@ -0,0 +1,9 @@
1
+ export = ViewRecordSetSUBSETFilterInternalJoinNumericMatch;
2
+ declare class ViewRecordSetSUBSETFilterInternalJoinNumericMatch extends ViewRecordSetSUBSETFilterBase {
3
+ }
4
+ declare namespace ViewRecordSetSUBSETFilterInternalJoinNumericMatch {
5
+ export { default_configuration };
6
+ }
7
+ import ViewRecordSetSUBSETFilterBase = require("./RecordSet-Filter-Base");
8
+ declare const default_configuration: any;
9
+ //# sourceMappingURL=RecordSet-Filter-InternalJoinNumericMatch.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-InternalJoinNumericMatch.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-InternalJoinNumericMatch.js"],"names":[],"mappings":";AAkCA;CAgBC"}
@@ -0,0 +1,9 @@
1
+ export = ViewRecordSetSUBSETFilterInternalJoinNumericRange;
2
+ declare class ViewRecordSetSUBSETFilterInternalJoinNumericRange extends ViewRecordSetSUBSETFilterBaseRange {
3
+ }
4
+ declare namespace ViewRecordSetSUBSETFilterInternalJoinNumericRange {
5
+ export { default_configuration };
6
+ }
7
+ import ViewRecordSetSUBSETFilterBaseRange = require("./RecordSet-Filter-Base-Range.js");
8
+ declare const default_configuration: any;
9
+ //# sourceMappingURL=RecordSet-Filter-InternalJoinNumericRange.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-InternalJoinNumericRange.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-InternalJoinNumericRange.js"],"names":[],"mappings":";AAmCA;CAiBC"}
@@ -0,0 +1,9 @@
1
+ export = ViewRecordSetSUBSETFilterInternalJoinStringMatch;
2
+ declare class ViewRecordSetSUBSETFilterInternalJoinStringMatch extends ViewRecordSetSUBSETFilterBase {
3
+ }
4
+ declare namespace ViewRecordSetSUBSETFilterInternalJoinStringMatch {
5
+ export { default_configuration };
6
+ }
7
+ import ViewRecordSetSUBSETFilterBase = require("./RecordSet-Filter-Base");
8
+ declare const default_configuration: any;
9
+ //# sourceMappingURL=RecordSet-Filter-InternalJoinStringMatch.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-InternalJoinStringMatch.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-InternalJoinStringMatch.js"],"names":[],"mappings":";AAkCA;CAMC"}
@@ -0,0 +1,9 @@
1
+ export = ViewRecordSetSUBSETFilterInternalJoinStringRange;
2
+ declare class ViewRecordSetSUBSETFilterInternalJoinStringRange extends ViewRecordSetSUBSETFilterBaseRange {
3
+ }
4
+ declare namespace ViewRecordSetSUBSETFilterInternalJoinStringRange {
5
+ export { default_configuration };
6
+ }
7
+ import ViewRecordSetSUBSETFilterBaseRange = require("./RecordSet-Filter-Base-Range.js");
8
+ declare const default_configuration: any;
9
+ //# sourceMappingURL=RecordSet-Filter-InternalJoinStringRange.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-InternalJoinStringRange.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-InternalJoinStringRange.js"],"names":[],"mappings":";AAmCA;CAMC"}
@@ -0,0 +1,9 @@
1
+ export = ViewRecordSetSUBSETFilterNumericMatch;
2
+ declare class ViewRecordSetSUBSETFilterNumericMatch extends ViewRecordSetSUBSETFilterBase {
3
+ }
4
+ declare namespace ViewRecordSetSUBSETFilterNumericMatch {
5
+ export { default_configuration };
6
+ }
7
+ import ViewRecordSetSUBSETFilterBase = require("./RecordSet-Filter-Base");
8
+ declare const default_configuration: any;
9
+ //# sourceMappingURL=RecordSet-Filter-NumericMatch.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-NumericMatch.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-NumericMatch.js"],"names":[],"mappings":";AAkCA;CAgBC"}
@@ -0,0 +1,9 @@
1
+ export = ViewRecordSetSUBSETFilterNumericRange;
2
+ declare class ViewRecordSetSUBSETFilterNumericRange extends ViewRecordSetSUBSETFilterBaseRange {
3
+ }
4
+ declare namespace ViewRecordSetSUBSETFilterNumericRange {
5
+ export { default_configuration };
6
+ }
7
+ import ViewRecordSetSUBSETFilterBaseRange = require("./RecordSet-Filter-Base-Range.js");
8
+ declare const default_configuration: any;
9
+ //# sourceMappingURL=RecordSet-Filter-NumericRange.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-NumericRange.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-NumericRange.js"],"names":[],"mappings":";AAmCA;CAiBC"}
@@ -0,0 +1,9 @@
1
+ export = ViewRecordSetSUBSETFilterStringMatch;
2
+ declare class ViewRecordSetSUBSETFilterStringMatch extends ViewRecordSetSUBSETFilterBase {
3
+ }
4
+ declare namespace ViewRecordSetSUBSETFilterStringMatch {
5
+ export { default_configuration };
6
+ }
7
+ import ViewRecordSetSUBSETFilterBase = require("./RecordSet-Filter-Base");
8
+ declare const default_configuration: any;
9
+ //# sourceMappingURL=RecordSet-Filter-StringMatch.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-StringMatch.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-StringMatch.js"],"names":[],"mappings":";AAkCA;CAMC"}
@@ -0,0 +1,9 @@
1
+ export = ViewRecordSetSUBSETFilterStringRange;
2
+ declare class ViewRecordSetSUBSETFilterStringRange extends ViewRecordSetSUBSETFilterBaseRange {
3
+ }
4
+ declare namespace ViewRecordSetSUBSETFilterStringRange {
5
+ export { default_configuration };
6
+ }
7
+ import ViewRecordSetSUBSETFilterBaseRange = require("./RecordSet-Filter-Base-Range.js");
8
+ declare const default_configuration: any;
9
+ //# sourceMappingURL=RecordSet-Filter-StringRange.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RecordSet-Filter-StringRange.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-StringRange.js"],"names":[],"mappings":";AAmCA;CAMC"}
@@ -0,0 +1,20 @@
1
+ export let Base: typeof import("./RecordSet-Filter-Base.js");
2
+ export let DateMatch: typeof import("./RecordSet-Filter-DateMatch.js");
3
+ export let DateRange: typeof import("./RecordSet-Filter-DateRange.js");
4
+ export let NumericMatch: typeof import("./RecordSet-Filter-NumericMatch.js");
5
+ export let NumericRange: typeof import("./RecordSet-Filter-NumericRange.js");
6
+ export let StringMatch: typeof import("./RecordSet-Filter-StringMatch.js");
7
+ export let StringRange: typeof import("./RecordSet-Filter-StringRange.js");
8
+ export let InternalJoinDateMatch: typeof import("./RecordSet-Filter-InternalJoinDateMatch.js");
9
+ export let InternalJoinDateRange: typeof import("./RecordSet-Filter-InternalJoinDateRange.js");
10
+ export let InternalJoinNumericMatch: typeof import("./RecordSet-Filter-InternalJoinNumericMatch.js");
11
+ export let InternalJoinNumericRange: typeof import("./RecordSet-Filter-InternalJoinNumericRange.js");
12
+ export let InternalJoinStringMatch: typeof import("./RecordSet-Filter-InternalJoinStringMatch.js");
13
+ export let InternalJoinStringRange: typeof import("./RecordSet-Filter-InternalJoinStringRange.js");
14
+ export let ExternalJoinDateMatch: typeof import("./RecordSet-Filter-ExternalJoinDateMatch.js");
15
+ export let ExternalJoinDateRange: typeof import("./RecordSet-Filter-ExternalJoinDateRange.js");
16
+ export let ExternalJoinNumericMatch: typeof import("./RecordSet-Filter-ExternalJoinNumericMatch.js");
17
+ export let ExternalJoinNumericRange: typeof import("./RecordSet-Filter-ExternalJoinNumericRange.js");
18
+ export let ExternalJoinStringMatch: typeof import("./RecordSet-Filter-ExternalJoinStringMatch.js");
19
+ export let ExternalJoinStringRange: typeof import("./RecordSet-Filter-ExternalJoinStringRange.js");
20
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../source/views/filters/index.js"],"names":[],"mappings":""}