pict-section-recordset 1.0.57 → 1.0.59

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 (46) hide show
  1. package/docs/.nojekyll +0 -0
  2. package/docs/README.md +76 -0
  3. package/docs/_sidebar.md +19 -0
  4. package/docs/api-reference.md +233 -0
  5. package/docs/cover.md +11 -0
  6. package/docs/filters.md +151 -0
  7. package/docs/index.html +51 -0
  8. package/docs/record-providers.md +155 -0
  9. package/docs/views/create/README.md +181 -0
  10. package/docs/views/dashboard/README.md +308 -0
  11. package/docs/views/list/README.md +260 -0
  12. package/docs/views/read/README.md +216 -0
  13. package/example_applications/README.md +25 -1
  14. package/package.json +11 -10
  15. package/source/application/Pict-Application-RecordSet.js +6 -0
  16. package/source/providers/Filter-Data-Provider.js +611 -187
  17. package/source/views/Filter-PersistenceView.js +534 -0
  18. package/source/views/RecordSet-Filters.js +141 -28
  19. package/test/PictSectionRecordSet-Basic_tests.js +39 -16
  20. package/test/PictSectionRecordSet-Filter-Data-Provider_tests.js +263 -0
  21. package/test/PictSectionRecordSet-RecordProvider-Meadow_tests.js +5 -3
  22. package/types/application/Pict-Application-RecordSet.d.ts.map +1 -1
  23. package/types/providers/Filter-Data-Provider.d.ts +225 -52
  24. package/types/providers/Filter-Data-Provider.d.ts.map +1 -1
  25. package/types/views/Filter-PersistenceView.d.ts +104 -0
  26. package/types/views/Filter-PersistenceView.d.ts.map +1 -0
  27. package/types/views/RecordSet-Filters.d.ts +43 -10
  28. package/types/views/RecordSet-Filters.d.ts.map +1 -1
  29. package/types/views/filters/RecordSet-Filter-Base-Range.d.ts.map +1 -1
  30. package/types/views/filters/RecordSet-Filter-Base.d.ts.map +1 -1
  31. package/types/views/filters/RecordSet-Filter-DateMatch.d.ts.map +1 -1
  32. package/types/views/filters/RecordSet-Filter-DateRange.d.ts.map +1 -1
  33. package/types/views/filters/RecordSet-Filter-ExternalJoinDateMatch.d.ts.map +1 -1
  34. package/types/views/filters/RecordSet-Filter-ExternalJoinDateRange.d.ts.map +1 -1
  35. package/types/views/filters/RecordSet-Filter-ExternalJoinNumericMatch.d.ts.map +1 -1
  36. package/types/views/filters/RecordSet-Filter-ExternalJoinNumericRange.d.ts.map +1 -1
  37. package/types/views/filters/RecordSet-Filter-ExternalJoinSelectedValue.d.ts.map +1 -1
  38. package/types/views/filters/RecordSet-Filter-ExternalJoinSelectedValueList.d.ts.map +1 -1
  39. package/types/views/filters/RecordSet-Filter-InternalJoinDateMatch.d.ts.map +1 -1
  40. package/types/views/filters/RecordSet-Filter-InternalJoinDateRange.d.ts.map +1 -1
  41. package/types/views/filters/RecordSet-Filter-InternalJoinNumericMatch.d.ts.map +1 -1
  42. package/types/views/filters/RecordSet-Filter-InternalJoinNumericRange.d.ts.map +1 -1
  43. package/types/views/filters/RecordSet-Filter-InternalJoinSelectedValue.d.ts.map +1 -1
  44. package/types/views/filters/RecordSet-Filter-InternalJoinSelectedValueList.d.ts.map +1 -1
  45. package/types/views/filters/RecordSet-Filter-NumericMatch.d.ts.map +1 -1
  46. package/types/views/filters/RecordSet-Filter-NumericRange.d.ts.map +1 -1
@@ -1,11 +1,10 @@
1
1
  /*
2
2
  Unit tests for PictSectionRecordSet Basic
3
-
3
+
4
4
  */
5
5
 
6
6
  // This is temporary, but enables unit tests
7
7
  const libBrowserEnv = require('browser-env');
8
- libBrowserEnv();
9
8
 
10
9
  const libPictApplication = require('pict-application');
11
10
  const libPictView = require('pict-view');
@@ -59,7 +58,10 @@ suite
59
58
  'PictSectionRecordSet RecordProvider MeadowEndpoints Tests',
60
59
  () =>
61
60
  {
62
- setup(() => { });
61
+ setup(() =>
62
+ {
63
+ libBrowserEnv({ url: 'http://localhost/' });
64
+ });
63
65
 
64
66
  suite
65
67
  (
@@ -1 +1 @@
1
- {"version":3,"file":"Pict-Application-RecordSet.d.ts","sourceRoot":"","sources":["../../source/application/Pict-Application-RecordSet.js"],"names":[],"mappings":";AAOA;;;;;;;GAOG;AACH;IAEC,2DAiBC;CAwBD;;;;;qCAIU,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC"}
1
+ {"version":3,"file":"Pict-Application-RecordSet.d.ts","sourceRoot":"","sources":["../../source/application/Pict-Application-RecordSet.js"],"names":[],"mappings":";AASA;;;;;;;GAOG;AACH;IAEC,2DAqBC;CAwBD;;;;;qCAIU,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC"}
@@ -1,4 +1,44 @@
1
1
  export = FilterDataProvider;
2
+ /** Terminology for Filter Data Provider (to avoid confusion):
3
+ * A "Record Set" is a collection of records that can be filtered.
4
+ * A "Filter Experience" is a saved state of filters for a given record set.
5
+ * A "Filter Experience Hash" is a unique identifier for a Filter Experience (display name converted to a hash).
6
+ * A "Filter Experience Encoded URL Param" is the URL-encoded representation of the filter state for a Filter Experience.
7
+ * A "Filter Display Name" is a user-friendly name for a Filter Experience to select/view in the UI.
8
+ * A "Filter Clauses" is a list of all saved filters in the "Filter Experience" for a given Record Set.
9
+ * A "Filter Meta" is the metadata associated with a Filter Experience, including the Filter Clauses and Filter Display Name.
10
+
11
+ * Behavior Summary:
12
+ * - Save Filter Meta to LocalStorage under a key derived from Record Set, View Context, and Filter Experience Hash.
13
+ * - Load Filter Meta from LocalStorage using the same key.
14
+ * - Remove Filter Meta from LocalStorage when requested.
15
+ * - List all Filter Experiences for a given Record Set by scanning LocalStorage keys.
16
+ * - Manage default and last used Filter Experiences for each Record Set and View Context. (last used takes priority over default on load, if the check is enabled)
17
+
18
+ * Storage Key Structure:
19
+ * - Filter_Meta_{RecordSet}_{ViewContext}_{FilterExperienceHash} : stores the Filter Meta JSON.
20
+
21
+ * Object Shape for Filter Meta (filter experience):
22
+ * {
23
+ * RecordSet: string, (auto-filled on save)
24
+ * ViewContext: string, (auto-filled on save)
25
+ * LastModifiedDate: string (ISO date) (auto-filled on save)
26
+ * FilterClauses: Array<{ Label: string, ExactMatch: boolean, Value: string }>,
27
+ * FilterDisplayName: string,
28
+ * FilterExperienceHash: string, (display name converted to hash)
29
+ * FilterExperienceEncodedURLParam: string, (URL-encoded filter state)
30
+
31
+ * Object Shape for Filter Experience Settings:
32
+ * {
33
+ * ExcludedFromSelection: boolean,
34
+ * RememberLastUsedFilterExperience: boolean,
35
+ * LastUsedFilterExperienceHash: string | null,
36
+ * LastUsedFilterExperienceURLParam: string | null,
37
+ * DefaultFilterExperienceHash: string | null,
38
+ * DefaultFilterExperienceURLParam: string | null,
39
+ * FallbackDefaultExperienceURLParam: string | null,
40
+ * }
41
+ */
2
42
  declare class FilterDataProvider extends libPictProvider {
3
43
  /**
4
44
  * @param {import('pict')} pFable - The Fable instance
@@ -8,91 +48,225 @@ declare class FilterDataProvider extends libPictProvider {
8
48
  constructor(pFable: import("pict"), pOptions?: Record<string, any>, pServiceHash?: string);
9
49
  storageProvider: any;
10
50
  keyCache: {};
11
- filtersMap: {};
12
- lastFilterExperienceHashMap: {};
51
+ /** ===== UTILITY for Filter Experience ============= */
13
52
  /**
14
- * @return {void}
53
+ * Using the information in the FilterClauses, try to generate a contextual default filter name for the display name of the current experience.
54
+ *
55
+ * @param {object} pFilterExperience - The filter experience to generate the default filter name for
56
+ * @param {string} [pRecordSet] - The current record set
57
+ * @param {string} [pViewContext] - The current view context
58
+ * @return {string} - The generated default filter name
15
59
  */
16
- loadFilters(): void;
60
+ generateContextualDefaultFilterName(pFilterExperience: object, pRecordSet?: string, pViewContext?: string): string;
17
61
  /**
18
- * List all available Filters (from the Filter Meta data)
19
- *
20
- * @param {string} pRecordSet - the record set to list the filters for
21
- *
22
- * @return Array<Record<string, any>> - a list of Filters as Index/FilterExperienceHash entries
62
+ * Re-render all views affected by a filter change.
63
+ * @param {object} tmpFilterExperience - The filter meta record that was changed/added.
64
+ * @param {string} pRecordSet - The record set to check.
65
+ * @param {string} pViewContext - The current view context
23
66
  */
24
- listFilters(pRecordSet: string): any;
67
+ navigateToFilterExperienceRoute(tmpFilterExperience: object, pRecordSet: string, pViewContext: string): void;
25
68
  /**
26
- * @param {string} pRecordSet - the record set to get the active filter experience for
27
- *
28
- * @return {Record<string, any>} - the active filter experience for the given record set
69
+ * Apply the expected filter experience to load on application load for a given record set and view context. Last Used takes priority over Default.
70
+ * This is the main entry point to set the default/latest filter experience on app load for a given record set and view context.
71
+ * @param {string} pRecordSet - The record set to set the default filter experience for
72
+ * @param {string} pViewContext - The current view context
73
+ * @return {boolean} - Returns true when the default filter experience has been set
29
74
  */
30
- getActiveFilterExperience(pRecordSet: string): Record<string, any>;
75
+ applyExpectedFilterExperience(pRecordSet: string, pViewContext: string): boolean;
76
+ /** ===== CRUD Filter Experiences ============= */
31
77
  /**
32
- * Check if a particular scope is in use.
33
- *
34
- * @param {string} pRecordSet - the record set
35
- * @param {string} pFilterExperienceHash - the manyfest scope to check the existence of
36
- *
37
- * @return {boolean}
78
+ * Initialize the filter experience settings for a given record set and view context if they do not already exist.
79
+ * @param {string} pRecordSet - The record set to initialize the settings for
80
+ * @param {string} pViewContext - The current view context
81
+ * @param {object} [pAdditionalSettings] - Additional settings to initialize with (pass through for future use)
82
+ * @return {string} - The filter experience settings object stringifyed (as if it was just read from storage).
83
+ */
84
+ initializeFilterExperienceSettings(pRecordSet: string, pViewContext: string, pAdditionalSettings?: object): string;
85
+ /**
86
+ * Set options like Last Used / Default hashes, which are stored in the settings object for a given record set and view context.
87
+ * @param {string} pRecordSet - The record set to get the setting for
88
+ * @param {string} pViewContext - The current view context
89
+ * @param {object} pSettings - The settings to update
90
+ * @return {object} - The filter experience settings object
91
+ */
92
+ updateFilterExperienceSettingsFromStorage(pRecordSet: string, pViewContext: string, pSettings: object): object;
93
+ /**
94
+ * Get a single filter experience by its hash for a given record set and view context.
95
+ * @param {string} pRecordSet - The record set to get the filter experience for
96
+ * @param {string} pViewContext - The current view context
97
+ * @param {string} pFilterExperienceHash - The filter experience hash to get
98
+ * @return {object} - The filter experience object
99
+ */
100
+ getFilterExperienceByHash(pRecordSet: string, pViewContext: string, pFilterExperienceHash: string): object;
101
+ /**
102
+ * List all available filter experiences (from the Filter Meta data) for a given record set and return them as an array of filter meta objects.
103
+ * @param {string} pRecordSet - the record set to list the filter experiences for
104
+ * @param {string} pViewContext - the current view context
105
+ * @return {Array<object>} - An array of filter meta objects for the given record set.
38
106
  */
39
- checkFilterExists(pRecordSet: string, pFilterExperienceHash: string): boolean;
107
+ getAllFiltersExperiencesForRecordSet(pRecordSet: string, pViewContext: string): Array<object>;
40
108
  /**
41
109
  * Resolve a key in the LocalStorage keyspace for a filter experience for a given record set.
42
- *
43
110
  * @param {string} pRecordSet - The record set to resolve a key for
111
+ * @param {string} pViewContext - The current view context
44
112
  * @param {string} pFilterExperienceHash - The scope to resolve a key for
45
113
  *
46
114
  * @return {string} A string that points to the record.
47
115
  */
48
- getFilterStorageKey(pRecordSet: string, pFilterExperienceHash: string): string;
116
+ getFilterStorageKey(pRecordSet: string, pViewContext: string, pFilterExperienceHash: string): string;
117
+ /**
118
+ * Check if a filter experience exists for a given record set and filter experience hash.
119
+ * @param {string} pRecordSet - The record set to check.
120
+ * @param {string} pViewContext - The current view context
121
+ * @param {string} pFilterExperienceHash - The filter experience hash to check.
122
+ * @return {boolean} - True if the filter experience exists, false otherwise.
123
+ */
124
+ checkIfFilterExperienceExists(pRecordSet: string, pViewContext: string, pFilterExperienceHash: string): boolean;
49
125
  /**
50
126
  * Save the application metadata (list of Filters, last loaded FilterExperienceHash, etc.)
51
- *
52
- * @param {string} pRecordSet - The record set to save the filter for; TODO: should this have a default?
53
- * @param {boolean} [pRender=false] - Whether or not to also render the list of Filters in the UI automatically
127
+ * @param {string} pRecordSet - The record set to save the filter for;
128
+ * @param {string} pViewContext - The current view context
129
+ * @param {string} pFilterExperienceHash - The name of the filter to load
130
+ * @param {boolean} pSkipSaveAsLastUsed - Whether to skip saving this as the last used filter experience - useful when loading last used filter itself
131
+ * @return {boolean} - Returns true when the filter experience has been loaded.
132
+ */
133
+ loadFilterMeta(pRecordSet: string, pViewContext: string, pFilterExperienceHash: string, pSkipSaveAsLastUsed: boolean): boolean;
134
+ /**
135
+ * Remove a filter meta from storage for a given record set and filter experience hash.
136
+ * @param {string} pRecordSet - The record set to remove the filter for
137
+ * @param {string} pViewContext - The current view context
138
+ * @param {string} pFilterExperienceHash - The filter experience hash to remove
139
+ * @return {boolean} - Returns true when the filter meta has been removed.
54
140
  */
55
- saveFilterMeta(pRecordSet: string, pRender?: boolean): boolean;
141
+ removeFilterMeta(pRecordSet: string, pViewContext: string, pFilterExperienceHash: string): boolean;
56
142
  /**
57
143
  * Save the application metadata (list of Filters, last loaded FilterExperienceHash, etc.)
58
- *
59
144
  * @param {string} pRecordSet - The record set to save the filter for; TODO: should this have a default?
60
- * @param {boolean} [pRender=false] - Whether or not to also render the list of Filters in the UI automatically
61
- *
62
- * @return {Array<object>} The list of available Filters.
145
+ * @param {string} pViewContext - The current view context
146
+ * @return {boolean} - Returns true when the settings have been saved.
63
147
  */
64
- loadFilterMeta(pRecordSet: string, pRender?: boolean): Array<object>;
148
+ saveFilterMeta(pRecordSet: string, pViewContext: string): boolean;
149
+ /** ===== LAST USED Filter Experience ============= */
65
150
  /**
66
- * @param {string} pRecordSet - The record set to add the filter experience hash to
67
- * @param {string} pFilterExperienceHash - The filter experience hash to add
68
- * @param {boolean} [pRender=true] - Whether or not to also render the list of Filters in the UI automatically
69
- *
70
- * @return {boolean} True if the filter experience hash was added, false if it already exists.
151
+ * Save the application metadata as the last used filter experience (continually updated).
152
+ * @param {object} pFilterExperience - The new filter experience object to save as last used
153
+ * @param {string} pRecordSet - The record set to save the filter for;
154
+ * @param {string} pViewContext - The current view context
155
+ * @return {boolean} - Returns true when the filter experience has been saved.
71
156
  */
72
- addFilterExperienceHashToFilterList(pRecordSet: string, pFilterExperienceHash: string, pRender?: boolean): boolean;
157
+ setLastUsedFilterExperience(pFilterExperience: object, pRecordSet: string, pViewContext: string): boolean;
73
158
  /**
74
- * @param {string} pRecordSet - The record set to remove the filter experience hash from
75
- * @param {string} pFilterExperienceHash - The filter experience hash to remove
76
- * @param {boolean} [pRender=true] - Whether or not to also render the list of Filters in the UI automatically
159
+ * Remove the last used filter experience for a given record set and view context. (used on "Clear" action to get back to empty filter state)
160
+ * @param {string} pRecordSet - The record set to remove the last used filter experience for
161
+ * @param {string} pViewContext - The current view context
162
+ * @return {boolean} - Returns true when the last used filter experience has been removed.
77
163
  */
78
- removeFilterExperienceHashFromFilterList(pRecordSet: string, pFilterExperienceHash: string, pRender?: boolean): boolean;
164
+ removeLastUsedFilterExperience(pRecordSet: string, pViewContext: string): boolean;
79
165
  /**
80
- * @param {string} pRecordSet - The record set to create a new filter for
81
- * @param {string} [pFilterExperienceHash] - The filter experience hash to create a new filter for; if not provided, a new one will be generated
166
+ * Get the last used filter experience for a given record set and view context.
167
+ * @param {string} pRecordSet - The record set to get the last used filter experience for
168
+ * @param {string} pViewContext - The current view context
169
+ * @return {object} - The last used filter experience (takes priority over default if both exist)
82
170
  */
83
- newFilter(pRecordSet: string, pFilterExperienceHash?: string): void;
171
+ getLastUsedFilterExperience(pRecordSet: string, pViewContext: string): object;
84
172
  /**
85
- * @param {string} pRecordSet - The record set to save the filter for; TODO: should this have a default?
173
+ * Check if the given filter experience is the last used filter experience for the given record set and view context.
174
+ * @param {string} pRecordSet - The record set to check
175
+ * @param {string} pViewContext - The current view context
176
+ * @param {string} pFilterExperienceHash - The filter experience hash to check
177
+ * @return {boolean} - True if the given filter experience is the last used filter experience, false otherwise
178
+ */
179
+ isLastUsedFilterExperienceHash(pRecordSet: string, pViewContext: string, pFilterExperienceHash: string): boolean;
180
+ /**
181
+ * Set whether to remember the last used filter experience across sessions.
182
+ * @param {string} pRecordSet - The record set to set the setting for
183
+ * @param {string} pViewContext - The current view context
184
+ * @param {boolean} pRemember - Whether to remember the last used filter experience
185
+ */
186
+ setRememberLastUsedFilterExperience(pRecordSet: string, pViewContext: string, pRemember: boolean): boolean;
187
+ /**
188
+ * Get whether to remember the last used filter experience across sessions.
189
+ * @param {string} pRecordSet - The record set to get the setting for
190
+ * @param {string} pViewContext - The current view context
191
+ * @return {boolean} - Whether to remember the last used filter experience
192
+ */
193
+ getRememberLastUsedFilterExperience(pRecordSet: string, pViewContext: string): boolean;
194
+ /** ===== CURRENT Filter Experience ============= */
195
+ /**
196
+ * Check if the given filter experience hash is the current active filter for the given record set.
197
+ * @param {string} pRecordSet - The record set to check.
198
+ * @param {string} pViewContext - The current view context.
199
+ * @param {string} pFilterExperienceHash - The filter experience hash to check.
200
+ * @return {boolean} - True if the given filter experience hash is the current active filter, false otherwise.
201
+ */
202
+ isCurrentFilterExperience(pRecordSet: string, pViewContext: string, pFilterExperienceHash: string): boolean;
203
+ /**
204
+ * Get the current filter name from the UI input (or generate a default one)
205
+ * @param {object} pFilterExperience - The filter experience to get the current filter name for
206
+ * @param {string} pRecordSet - The record set to get the filter name for
207
+ * @param {string} pViewContext - The current view context
208
+ * @return {string} - The current filter name
86
209
  */
87
- saveFilter(pRecordSet: string): void;
210
+ getCurrentFilterName(pFilterExperience: object, pRecordSet: string, pViewContext: string): string;
88
211
  /**
89
- * @param {string} pRecordSet - The record set to load the filter for
90
- * @param {string} pFilterFilterExperienceHash - The filter experience hash to load; if not provided, the last used one will be loaded
212
+ * Set the current filter name in the UI input
213
+ * @param {object} [pFilterExperience] - The filter experience to set the current filter name for
214
+ * @param {string} [pRecordSet] - The record set to set the filter name for
215
+ * @param {string} [pViewContext] - The current view context
216
+ * @param {string} [pNewName] - The new name to set
217
+ * @return {boolean} - Returns true when the name has been set
91
218
  */
92
- loadFilter(pRecordSet: string, pFilterFilterExperienceHash: string): void;
219
+ setCurrentFilterName(pFilterExperience?: object, pRecordSet?: string, pViewContext?: string, pNewName?: string): boolean;
220
+ /** ===== DEFAULT Filter Experience ============= */
221
+ /**
222
+ * Set the default filter experience to load on application load for a given record set and filter experience hash.
223
+ * @param {string} pRecordSet - The record set to set the default filter experience for
224
+ * @param {string} pViewContext - The current view context
225
+ * @param {string} pFilterExperienceHash - The filter experience hash to set as default on load
226
+ * @param {boolean} pSetAsDefault - Whether to set as default or not
227
+ * @return {boolean} - Returns true when the default filter experience has been set
228
+ */
229
+ setDefaultFilterExperience(pRecordSet: string, pViewContext: string, pFilterExperienceHash: string, pSetAsDefault: boolean): boolean;
230
+ /**
231
+ * Remove the default filter experience for a given record set and view context. (used on "Clear" action to get back to empty filter state)
232
+ * @param {string} pRecordSet - The record set to remove the default filter experience for
233
+ * @param {string} pViewContext - The current view context
234
+ * @return {boolean} - Returns true when the default filter experience has been removed.
235
+ */
236
+ removeDefaultFilterExperience(pRecordSet: string, pViewContext: string): boolean;
237
+ /**
238
+ * Get the default filter experience to load on application load for a given record set and view context.
239
+ * @param {string} pRecordSet - The record set to get the default filter experience for
240
+ * @param {string} pViewContext - The current view context
241
+ * @return {object} - The default filter experience to load on application load (used if no last used filter experience is found or they clear filters back to default)
242
+ */
243
+ getDefaultFilterExperience(pRecordSet: string, pViewContext: string): object;
244
+ /**
245
+ * Check if the given filter experience is the default filter experience to load on application load for the given record set and view context.
246
+ * @param {string} pRecordSet - The record set to check
247
+ * @param {string} pViewContext - The current view context
248
+ * @param {string} pFilterExperienceHash - The filter experience hash to check
249
+ * @return {boolean} - True if the given filter experience is the default filter experience on load, false otherwise
250
+ */
251
+ isDefaultFilterExperience(pRecordSet: string, pViewContext: string, pFilterExperienceHash: string): boolean;
252
+ /**
253
+ * Get the fallback default filter experience URL param to load on application load for a given record set and view context.
254
+ * @param {string} pRecordSet - The record set to get the fallback default filter experience for
255
+ * @param {string} pViewContext - The current view context
256
+ * @return {string|null} - The fallback default filter experience URL param to load on application load (could be server/customer provided)
257
+ */
258
+ getFallbackDefaultFilterExperienceSettings(pRecordSet: string, pViewContext: string): string | null;
259
+ /**
260
+ * Set the fallback default filter experience URL param to load on application load for a given record set and view context. Expected to be used for server/customer provided fallbacks.
261
+ * @param {string} pRecordSet - The record set to set the fallback default filter experience for
262
+ * @param {string} pViewContext - The current view context
263
+ * @param {string} pURLParam - The fallback default filter experience URL param to set
264
+ * @return {boolean} - Returns true when the fallback default filter experience URL param has been set
265
+ */
266
+ setFallbackDefaultFilterExperienceSettings(pRecordSet: string, pViewContext: string, pURLParam: string): boolean;
267
+ /** ===== SIMPLE KEY-VALUE CACHE ============= */
93
268
  /**
94
269
  * @param {string} pKey - The key to get from the cache
95
- *
96
270
  * @return {any} - The value associated with the key, or false if not found
97
271
  */
98
272
  getItem(pKey: string): any;
@@ -103,7 +277,6 @@ declare class FilterDataProvider extends libPictProvider {
103
277
  setItem(pKey: string, pValue: any): boolean;
104
278
  /**
105
279
  * @param {string} pKey - The key to remove from the cache
106
- *
107
280
  * @return {boolean} - True if the item was removed, false if it was not found
108
281
  */
109
282
  removeItem(pKey: string): boolean;
@@ -1 +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"}
1
+ {"version":3,"file":"Filter-Data-Provider.d.ts","sourceRoot":"","sources":["../../source/providers/Filter-Data-Provider.js"],"names":[],"mappings":"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"}
@@ -0,0 +1,104 @@
1
+ export = viewFilterPersistenceView;
2
+ declare class viewFilterPersistenceView extends libPictView {
3
+ constructor(pFable: any, pOptions: any, pServiceHash: any);
4
+ currentRecordSet: string;
5
+ currentViewContext: string;
6
+ filterExperienceSelection: any;
7
+ /**
8
+ * Toggles the filter persistence UI for a given record set and view context.
9
+ * @param {string} pRecordSet - The identifier of the record set.
10
+ * @param {string} pViewContext - The context of the view.
11
+ * @returns {boolean} - Returns true when the UI has been toggled.
12
+ */
13
+ openFilterPersistenceUI(pRecordSet: string, pViewContext: string): boolean;
14
+ /**
15
+ * Updates the filter experience settings for a given record set and view context.
16
+ * @param {string} pRecordSet - The identifier of the record set.
17
+ * @param {string} pViewContext - The context of the view.
18
+ * @param {object} pSettings - The settings to update.
19
+ * @returns {boolean} - Returns true when the settings have been updated.
20
+ */
21
+ updateFilterExperienceSettings(pRecordSet: string, pViewContext: string, pSettings: object): boolean;
22
+ /**
23
+ * Sets the filter experience to load based on user selection.
24
+ * @param {Event} event - The event object.
25
+ * @returns {boolean} - Returns true when the filter experience has been set.
26
+ */
27
+ setFilterExperienceToSelection(event: Event): boolean;
28
+ /**
29
+ * Closes the filter persistence UI.
30
+ * @returns {boolean} - Returns true when the UI has been closed.
31
+ */
32
+ closeFilterPersistenceUI(): boolean;
33
+ /**
34
+ * Builds the select options for available filter experiences. Sets the current filter as selected and indicates it in the option text.
35
+ * @returns {boolean} - Returns true when the options have been built.
36
+ */
37
+ buildSelectOptionsForAvailableFilterExperiences(): boolean;
38
+ /**
39
+ * Toggles the "Remember Last Used Filter Experience" setting in the Filter Data Provider.
40
+ * @param {Event} event - The event object.
41
+ * @returns {boolean} - Returns true when the setting has been toggled.
42
+ */
43
+ toggleRememberLastUsedFilterExperience(event: Event): boolean;
44
+ /**
45
+ * Loads the filter persistence settings for the current selection of filter experiences.
46
+ * @param {Event} event - The event object.
47
+ * @returns {boolean} - Returns true when the settings have been loaded.
48
+ */
49
+ loadFilterPersistenceSettings(event: Event): boolean;
50
+ /**
51
+ * Saves the filter persistence settings for the current selection of filter experiences.
52
+ * @param {Event} event - The event object.
53
+ * @returns {boolean} - Returns true when the settings have been saved.
54
+ */
55
+ saveFilterPersistenceSettings(event: Event): boolean;
56
+ /**
57
+ * Sets the filter experience as the default for the current record set and view context.
58
+ * @param {Event} event - The event object.
59
+ * @param {boolean} isDefault - Whether to set as default or not.
60
+ * @returns {boolean} - Returns true when the settings have been set as default.
61
+ */
62
+ toggleFilterExperienceAsTheDefault(event: Event, isDefault: boolean): boolean;
63
+ /**
64
+ * Handles the button states for the filter experience selection.
65
+ * @param {boolean} isDefault - Whether the filter experience is set as default or not.
66
+ */
67
+ handleSelectionButtonStates(isDefault: boolean): void;
68
+ /**
69
+ * Deletes the filter persistence settings for the current selection of filter experiences.
70
+ * @param {Event} event - The event object.
71
+ * @returns {boolean} - Returns true when the settings have been deleted.
72
+ */
73
+ deleteFilterPersistenceSettings(event: Event): boolean;
74
+ }
75
+ declare namespace viewFilterPersistenceView {
76
+ export { _DEFAULT_CONFIGURATION_FilterPersistenceView as default_configuration };
77
+ }
78
+ import libPictView = require("pict-view");
79
+ declare namespace _DEFAULT_CONFIGURATION_FilterPersistenceView {
80
+ let ViewIdentifier: string;
81
+ let DefaultRenderable: string;
82
+ let DefaultDestinationAddress: string;
83
+ let DefaultTemplateRecordAddress: boolean;
84
+ let AutoInitialize: boolean;
85
+ let AutoInitializeOrdinal: number;
86
+ let AutoRender: boolean;
87
+ let AutoRenderOrdinal: number;
88
+ let AutoSolveWithApp: boolean;
89
+ let AutoSolveOrdinal: number;
90
+ let CSS: boolean;
91
+ let CSSPriority: number;
92
+ let Templates: {
93
+ Hash: string;
94
+ Template: string;
95
+ }[];
96
+ let Renderables: {
97
+ RenderableHash: string;
98
+ TemplateHash: string;
99
+ DestinationAddress: string;
100
+ RenderMethod: string;
101
+ }[];
102
+ let Manifests: {};
103
+ }
104
+ //# sourceMappingURL=Filter-PersistenceView.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Filter-PersistenceView.d.ts","sourceRoot":"","sources":["../../source/views/Filter-PersistenceView.js"],"names":[],"mappings":";AAoFA;IAEC,2DAQC;IAHA,yBAA4B;IAC5B,2BAA8B;IAC9B,+BAAqC;IAGtC;;;;;OAKG;IACH,oCAJW,MAAM,gBACN,MAAM,GACJ,OAAO,CA4CnB;IAED;;;;;;OAMG;IACH,2CALW,MAAM,gBACN,MAAM,aACN,MAAM,GACJ,OAAO,CAenB;IAED;;;;OAIG;IACH,sCAHW,KAAK,GACH,OAAO,CAuBnB;IAED;;;OAGG;IACH,4BAFa,OAAO,CAanB;IAED;;;OAGG;IACH,mDAFa,OAAO,CAsCnB;IAED;;;;OAIG;IACH,8CAHW,KAAK,GACH,OAAO,CAcnB;IAED;;;;OAIG;IACH,qCAHW,KAAK,GACH,OAAO,CAenB;IAED;;;;OAIG;IACH,qCAHW,KAAK,GACH,OAAO,CAWnB;IAED;;;;;OAKG;IACH,0CAJW,KAAK,aACL,OAAO,GACL,OAAO,CAoBnB;IAED;;;OAGG;IACH,uCAFW,OAAO,QA4BjB;IAED;;;;OAIG;IACH,uCAHW,KAAK,GACH,OAAO,CAiBnB;CACD"}
@@ -25,13 +25,11 @@ declare class ViewRecordSetSUBSETFilters extends libPictView {
25
25
  getInformaryScopedValue(pAddress: string): any;
26
26
  /**
27
27
  * Marshals data from the view to the model, usually AppData (or configured data store).
28
- *
29
28
  * @returns {any} The result of the superclass's onMarshalFromView method.
30
29
  */
31
30
  onMarshalFromView(): any;
32
31
  /**
33
32
  * Marshals the data to the view from the model, usually AppData (or configured data store).
34
- *
35
33
  * @returns {any} The result of the super.onMarshalToView() method.
36
34
  */
37
35
  onMarshalToView(): any;
@@ -48,31 +46,68 @@ declare class ViewRecordSetSUBSETFilters extends libPictView {
48
46
  */
49
47
  performSearch(pRecordSet: string, pViewContext: string, pFilterString?: string): void;
50
48
  /**
49
+ * Clear all filter clauses for the given record set and view context.
50
+ * @param {Event} pEvent - The DOM event that triggered the search
51
+ * @param {string} pRecordSet - The record set being filtered
52
+ * @param {string} pViewContext - The view context for the filter (ex. List, Dashboard)
53
+ */
54
+ handleClear(pEvent: Event, pRecordSet: string, pViewContext: string): void;
55
+ /**
56
+ * Reset the filters to default state or fallback to to clear everything if no default exist for the given record set and view context.
51
57
  * @param {Event} pEvent - The DOM event that triggered the search
52
58
  * @param {string} pRecordSet - The record set being filtered
53
59
  * @param {string} pViewContext - The view context for the filter (ex. List, Dashboard)
54
60
  */
55
61
  handleReset(pEvent: Event, pRecordSet: string, pViewContext: string): void;
62
+ /**
63
+ * @param {Event} pEvent - The DOM event that triggered the search
64
+ * @param {string} pRecordSet - The record set being filtered
65
+ * @param {string} pViewContext - The view context for the filter (ex. List, Dashboard)
66
+ * @returns {boolean} - Always returns false to prevent default action
67
+ */
68
+ handleManage(pEvent: Event, pRecordSet: string, pViewContext: string): boolean;
56
69
  /**
57
70
  * @param {Event} pEvent - The DOM event that triggered the search
58
71
  * @param {string} pRecordSet - The record set being filtered
59
72
  * @param {string} pViewContext - The view context for the filter (ex. List, Dashboard)
60
73
  */
61
74
  selectFilterToAdd(pEvent: Event, pRecordSet: string, pViewContext: string): void;
62
- addFilter(pEvent: any, pRecordSet: any, pViewContext: any, pFilterKey: any, pClauseKey: any): void;
63
- removeFilter(pEvent: any, pRecordSet: any, pViewContext: any, pSpecificFilterKey: any): void;
64
- getFilterSchema(pRecordSet: any): any[];
65
- serializeFilterExperience(pExperience: any): Promise<string>;
66
75
  /**
76
+ * @param {Event} pEvent - The DOM event that triggered the search
77
+ * @param {string} pRecordSet - The record set being filtered
78
+ * @param {string} pViewContext - The view context for the filter (ex. List, Dashboard)
79
+ * @param {string} pFilterKey - The key of the filter to add
80
+ * @param {string} pClauseKey - The key of the clause to add
81
+ */
82
+ addFilter(pEvent: Event, pRecordSet: string, pViewContext: string, pFilterKey: string, pClauseKey: string): void;
83
+ /**
84
+ * @param {Event} pEvent - The DOM event that triggered the search
85
+ * @param {string} pRecordSet - The record set being filtered
86
+ * @param {string} pViewContext - The view context for the filter (ex. List, Dashboard)
87
+ * @param {string} pSpecificFilterKey - The key of the specific filter to remove
88
+ */
89
+ removeFilter(pEvent: Event, pRecordSet: string, pViewContext: string, pSpecificFilterKey: string): void;
90
+ /**
91
+ * Gets the filter schema for the given record set.
92
+ * @param {string} pRecordSet - The record set to get the filter schema for
93
+ * @return {Array<any>} - The filter schema for the given record set
94
+ */
95
+ getFilterSchema(pRecordSet: string): Array<any>;
96
+ /**
97
+ * Encodes the filter experience to a string.
98
+ * @param {Record<string, any>} pExperience - The filter experience to serialize.
99
+ * @return {Promise<string>} - The serialized filter experience as a string.
100
+ */
101
+ serializeFilterExperience(pExperience: Record<string, any>): Promise<string>;
102
+ /**
103
+ * Decodes the filter experience from a string.
67
104
  * @param {string} pExperience - The serialized filter experience as a string.
68
- *
69
105
  * @return {Promise<Record<string, any>>} - The serialized filter experience as a string.
70
106
  */
71
107
  deserializeFilterExperience(pExperience: string): Promise<Record<string, any>>;
72
108
  /**
73
109
  * @param {string} string - The string to compress.
74
110
  * @param {CompressionFormat} [encoding='gzip'] - The encoding to use for compression, defaults to 'gzip'.
75
- *
76
111
  * @return {Promise<ArrayBuffer>} - The compressed byte array.
77
112
  */
78
113
  compress(string: string, encoding?: CompressionFormat): Promise<ArrayBuffer>;
@@ -83,13 +118,11 @@ declare class ViewRecordSetSUBSETFilters extends libPictView {
83
118
  decompress(byteArray: Uint8Array, encoding?: CompressionFormat): Promise<string>;
84
119
  /**
85
120
  * @param {ArrayBuffer} arraybuffer - The ArrayBuffer to encode to Base64.
86
- *
87
121
  * @return {string} - The Base64 encoded string.
88
122
  */
89
123
  encode(arraybuffer: ArrayBuffer): string;
90
124
  /**
91
125
  * @param {string} base64 - The Base64 encoded string to decode to an ArrayBuffer.
92
- *
93
126
  * @return {ArrayBuffer} - The decoded ArrayBuffer.
94
127
  */
95
128
  decode(base64: string): ArrayBuffer;
@@ -1 +1 @@
1
- {"version":3,"file":"RecordSet-Filters.d.ts","sourceRoot":"","sources":["../../source/views/RecordSet-Filters.js"],"names":[],"mappings":";AAgMA;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;IA0CD,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;;;;;AA5kBD,kCAAkC;AAClC,oDADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAgJ5B"}
1
+ {"version":3,"file":"RecordSet-Filters.d.ts","sourceRoot":"","sources":["../../source/views/RecordSet-Filters.js"],"names":[],"mappings":";AA6MA;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;;;OAGG;IACH,qBAFa,GAAG,CAaf;IAED;;;OAGG;IACH,mBAFa,GAAG,CAaf;IAED;;;;OAIG;IACH,qBAJW,KAAK,cACL,MAAM,gBACN,MAAM,QAShB;IAED;;;;OAIG;IACH,0BAJW,MAAM,gBACN,MAAM,kBACN,MAAM,QAkDhB;IAED;;;;;OAKG;IACH,oBAJW,KAAK,cACL,MAAM,gBACN,MAAM,QAShB;IAGD;;;;;OAKG;IACH,oBAJW,KAAK,cACL,MAAM,gBACN,MAAM,QAkBhB;IAED;;;;;MAKE;IACF,qBALW,KAAK,cACL,MAAM,gBACN,MAAM,GACJ,OAAO,CAQnB;IAED;;;;OAIG;IACH,0BAJW,KAAK,cACL,MAAM,gBACN,MAAM,QAQhB;IAED;;;;;;OAMG;IACH,kBANW,KAAK,cACL,MAAM,gBACN,MAAM,cACN,MAAM,cACN,MAAM,QAShB;IAED;;;;;OAKG;IACH,qBALW,KAAK,cACL,MAAM,gBACN,MAAM,sBACN,MAAM,QAShB;IAED;;;;OAIG;IACH,4BAHW,MAAM,GACL,KAAK,CAAC,GAAG,CAAC,CAMrB;IAmDD;;;;OAIG;IACH,uCAHW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAClB,OAAO,CAAC,MAAM,CAAC,CAiB1B;IAED;;;;OAIG;IACH,yCAHW,MAAM,GACL,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAUvC;IAED;;;;OAIG;IACH,iBAJW,MAAM,aACN,iBAAiB,GAChB,OAAO,CAAC,WAAW,CAAC,CAU/B;IAED;;;OAGG;IACH,sBAHW,UAAU,aACV,iBAAiB,mBAa3B;IAED;;;OAGG;IACH,oBAHW,WAAW,GACV,MAAM,CA2BjB;IAED;;;OAGG;IACH,eAHW,MAAM,GACL,WAAW,CAsCtB;CACD;;;;;AAnpBD,kCAAkC;AAClC,oDADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CA6J5B"}
@@ -1 +1 @@
1
- {"version":3,"file":"RecordSet-Filter-Base-Range.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-Base-Range.js"],"names":[],"mappings":";AAGA;CAkCC"}
1
+ {"version":3,"file":"RecordSet-Filter-Base-Range.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-Base-Range.js"],"names":[],"mappings":";AAEA;CAoCC"}
@@ -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;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"}
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,QAgB7B;IAED,gCAGC;IAED;;OAEG;IACH,6BAFY,MAAM,CAKjB;IAED;;;;OAIG;IACH,2CAJW,MAAM,GAEL,GAAG,CAKd;CACD;;;;;AApHD,kCAAkC;AAClC,oDADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CA+D5B"}
@@ -1 +1 @@
1
- {"version":3,"file":"RecordSet-Filter-DateMatch.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-DateMatch.js"],"names":[],"mappings":";AAqBA;CAuBC"}
1
+ {"version":3,"file":"RecordSet-Filter-DateMatch.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-DateMatch.js"],"names":[],"mappings":";AAqBA;CAwBC"}
@@ -1 +1 @@
1
- {"version":3,"file":"RecordSet-Filter-DateRange.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-DateRange.js"],"names":[],"mappings":";AAsBA;CAuCC"}
1
+ {"version":3,"file":"RecordSet-Filter-DateRange.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-DateRange.js"],"names":[],"mappings":";AAsBA;CAyCC"}
@@ -1 +1 @@
1
- {"version":3,"file":"RecordSet-Filter-ExternalJoinDateMatch.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-ExternalJoinDateMatch.js"],"names":[],"mappings":";AAqBA;CAuBC"}
1
+ {"version":3,"file":"RecordSet-Filter-ExternalJoinDateMatch.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-ExternalJoinDateMatch.js"],"names":[],"mappings":";AAqBA;CAwBC"}
@@ -1 +1 @@
1
- {"version":3,"file":"RecordSet-Filter-ExternalJoinDateRange.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-ExternalJoinDateRange.js"],"names":[],"mappings":";AAsBA;CAsBC"}
1
+ {"version":3,"file":"RecordSet-Filter-ExternalJoinDateRange.d.ts","sourceRoot":"","sources":["../../../source/views/filters/RecordSet-Filter-ExternalJoinDateRange.js"],"names":[],"mappings":";AAsBA;CAwBC"}