pict-section-recordset 1.0.26 → 1.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/example_applications/simple_entity/Simple-RecordSet-Application.js +5 -3
- package/package.json +2 -2
- package/source/providers/RecordSet-RecordProvider-Base.js +154 -0
- package/source/providers/RecordSet-RecordProvider-MeadowEndpoints.js +181 -1
- package/source/services/RecordsSet-MetaController.js +1 -0
- package/source/views/RecordSet-Filters.js +94 -0
- package/source/views/filters/RecordSet-Filter-Base.js +18 -4
- package/source/views/filters/RecordSet-Filter-DateMatch.js +5 -13
- package/source/views/filters/RecordSet-Filter-DateRange.js +5 -13
- package/source/views/filters/RecordSet-Filter-ExternalJoinDateMatch.js +5 -13
- package/source/views/filters/RecordSet-Filter-ExternalJoinDateRange.js +5 -13
- package/source/views/filters/RecordSet-Filter-ExternalJoinNumericMatch.js +5 -13
- package/source/views/filters/RecordSet-Filter-ExternalJoinNumericRange.js +5 -13
- package/source/views/filters/RecordSet-Filter-ExternalJoinStringMatch.js +5 -13
- package/source/views/filters/RecordSet-Filter-ExternalJoinStringRange.js +5 -13
- package/source/views/filters/RecordSet-Filter-InternalJoinDateMatch.js +5 -13
- package/source/views/filters/RecordSet-Filter-InternalJoinDateRange.js +5 -13
- package/source/views/filters/RecordSet-Filter-InternalJoinNumericMatch.js +5 -13
- package/source/views/filters/RecordSet-Filter-InternalJoinNumericRange.js +5 -13
- package/source/views/filters/RecordSet-Filter-InternalJoinStringMatch.js +5 -13
- package/source/views/filters/RecordSet-Filter-InternalJoinStringRange.js +5 -13
- package/source/views/filters/RecordSet-Filter-NumericMatch.js +5 -13
- package/source/views/filters/RecordSet-Filter-NumericRange.js +5 -13
- package/source/views/filters/RecordSet-Filter-StringMatch.js +5 -13
- package/source/views/filters/RecordSet-Filter-StringRange.js +5 -13
- package/types/providers/RecordSet-RecordProvider-Base.d.ts +39 -0
- package/types/providers/RecordSet-RecordProvider-Base.d.ts.map +1 -1
- package/types/providers/RecordSet-RecordProvider-MeadowEndpoints.d.ts +10 -0
- package/types/providers/RecordSet-RecordProvider-MeadowEndpoints.d.ts.map +1 -1
- package/types/services/RecordsSet-MetaController.d.ts.map +1 -1
- package/types/views/RecordSet-Filters.d.ts +8 -0
- package/types/views/RecordSet-Filters.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-Base.d.ts +1 -0
- package/types/views/filters/RecordSet-Filter-Base.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-DateMatch.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-DateRange.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-ExternalJoinDateMatch.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-ExternalJoinDateRange.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-ExternalJoinNumericMatch.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-ExternalJoinNumericRange.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-ExternalJoinStringMatch.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-ExternalJoinStringRange.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-InternalJoinDateMatch.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-InternalJoinDateRange.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-InternalJoinNumericMatch.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-InternalJoinNumericRange.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-InternalJoinStringMatch.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-InternalJoinStringRange.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-NumericMatch.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-NumericRange.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-StringMatch.d.ts.map +1 -1
- package/types/views/filters/RecordSet-Filter-StringRange.d.ts.map +1 -1
|
@@ -6,9 +6,6 @@ const _DEFAULT_CONFIGURATION_Filter_ExternalJoin_DateMatch =
|
|
|
6
6
|
{
|
|
7
7
|
ViewIdentifier: 'PRSP-Filter-ExternalJoin-DateMatch',
|
|
8
8
|
|
|
9
|
-
DefaultRenderable: 'PRSP_Renderable_Filter_ExternalJoin_DateMatch',
|
|
10
|
-
DefaultDestinationAddress: '#PRSP_Renderable_Filter_ExternalJoin_DateMatch',
|
|
11
|
-
|
|
12
9
|
Templates:
|
|
13
10
|
[
|
|
14
11
|
{
|
|
@@ -20,16 +17,6 @@ const _DEFAULT_CONFIGURATION_Filter_ExternalJoin_DateMatch =
|
|
|
20
17
|
`
|
|
21
18
|
}
|
|
22
19
|
],
|
|
23
|
-
|
|
24
|
-
Renderables:
|
|
25
|
-
[
|
|
26
|
-
{
|
|
27
|
-
RenderableHash: 'PRSP_Renderable_Filter_ExternalJoin_DateMatch',
|
|
28
|
-
TemplateHash: 'PRSP-Filter-ExternalJoin-DateMatch-Template',
|
|
29
|
-
DestinationAddress: '#PRSP_Filter_ExternalJoin_DateMatch_Container',
|
|
30
|
-
RenderMethod: 'replace'
|
|
31
|
-
}
|
|
32
|
-
],
|
|
33
20
|
};
|
|
34
21
|
|
|
35
22
|
class ViewRecordSetSUBSETFilterExternalJoinDateMatch extends ViewRecordSetSUBSETFilterBase
|
|
@@ -48,6 +35,11 @@ class ViewRecordSetSUBSETFilterExternalJoinDateMatch extends ViewRecordSetSUBSET
|
|
|
48
35
|
{
|
|
49
36
|
pRecord.ClauseDescriptor.DataType = 'DateTime';
|
|
50
37
|
}
|
|
38
|
+
|
|
39
|
+
getFilterFormTemplate()
|
|
40
|
+
{
|
|
41
|
+
return 'PRSP-Filter-ExternalJoin-DateMatch-Template';
|
|
42
|
+
}
|
|
51
43
|
}
|
|
52
44
|
|
|
53
45
|
module.exports = ViewRecordSetSUBSETFilterExternalJoinDateMatch;
|
|
@@ -6,9 +6,6 @@ const _DEFAULT_CONFIGURATION_Filter_ExternalJoin_DateRange =
|
|
|
6
6
|
{
|
|
7
7
|
ViewIdentifier: 'PRSP-Filter-ExternalJoin-DateRange',
|
|
8
8
|
|
|
9
|
-
DefaultRenderable: 'PRSP_Renderable_Filter_ExternalJoin_DateRange',
|
|
10
|
-
DefaultDestinationAddress: '#PRSP_Renderable_Filter_ExternalJoin_DateRange',
|
|
11
|
-
|
|
12
9
|
Templates:
|
|
13
10
|
[
|
|
14
11
|
{
|
|
@@ -21,16 +18,6 @@ const _DEFAULT_CONFIGURATION_Filter_ExternalJoin_DateRange =
|
|
|
21
18
|
`
|
|
22
19
|
}
|
|
23
20
|
],
|
|
24
|
-
|
|
25
|
-
Renderables:
|
|
26
|
-
[
|
|
27
|
-
{
|
|
28
|
-
RenderableHash: 'PRSP_Renderable_Filter_ExternalJoin_DateRange',
|
|
29
|
-
TemplateHash: 'PRSP-Filter-ExternalJoin-DateRange-Template',
|
|
30
|
-
DestinationAddress: '#PRSP_Filter_ExternalJoin_DateRange_Container',
|
|
31
|
-
RenderMethod: 'replace'
|
|
32
|
-
}
|
|
33
|
-
],
|
|
34
21
|
};
|
|
35
22
|
|
|
36
23
|
class ViewRecordSetSUBSETFilterExternalJoinDateRange extends ViewRecordSetSUBSETFilterBaseRange
|
|
@@ -50,6 +37,11 @@ class ViewRecordSetSUBSETFilterExternalJoinDateRange extends ViewRecordSetSUBSET
|
|
|
50
37
|
pRecord.StartClauseDescriptor.DataType = 'DateTime';
|
|
51
38
|
pRecord.EndClauseDescriptor.DataType = 'DateTime';
|
|
52
39
|
}
|
|
40
|
+
|
|
41
|
+
getFilterFormTemplate()
|
|
42
|
+
{
|
|
43
|
+
return 'PRSP-Filter-ExternalJoin-DateRange-Template';
|
|
44
|
+
}
|
|
53
45
|
}
|
|
54
46
|
|
|
55
47
|
module.exports = ViewRecordSetSUBSETFilterExternalJoinDateRange;
|
|
@@ -5,9 +5,6 @@ const _DEFAULT_CONFIGURATION_Filter_ExternalJoin_NumericMatch =
|
|
|
5
5
|
{
|
|
6
6
|
ViewIdentifier: 'PRSP-Filter-ExternalJoin-NumericMatch',
|
|
7
7
|
|
|
8
|
-
DefaultRenderable: 'PRSP_Renderable_Filter_ExternalJoin_NumericMatch',
|
|
9
|
-
DefaultDestinationAddress: '#PRSP_Renderable_Filter_ExternalJoin_NumericMatch',
|
|
10
|
-
|
|
11
8
|
Templates:
|
|
12
9
|
[
|
|
13
10
|
{
|
|
@@ -19,16 +16,6 @@ const _DEFAULT_CONFIGURATION_Filter_ExternalJoin_NumericMatch =
|
|
|
19
16
|
`
|
|
20
17
|
}
|
|
21
18
|
],
|
|
22
|
-
|
|
23
|
-
Renderables:
|
|
24
|
-
[
|
|
25
|
-
{
|
|
26
|
-
RenderableHash: 'PRSP_Renderable_Filter_ExternalJoin_NumericMatch',
|
|
27
|
-
TemplateHash: 'PRSP-Filter-ExternalJoin-NumericMatch-Template',
|
|
28
|
-
DestinationAddress: '#PRSP_Filter_ExternalJoin_NumericMatch_Container',
|
|
29
|
-
RenderMethod: 'replace'
|
|
30
|
-
}
|
|
31
|
-
],
|
|
32
19
|
};
|
|
33
20
|
|
|
34
21
|
class ViewRecordSetSUBSETFilterExternalJoinNumericMatch extends ViewRecordSetSUBSETFilterBase
|
|
@@ -47,6 +34,11 @@ class ViewRecordSetSUBSETFilterExternalJoinNumericMatch extends ViewRecordSetSUB
|
|
|
47
34
|
|
|
48
35
|
pRecord.ClauseDescriptor.DataType = 'Number';
|
|
49
36
|
}
|
|
37
|
+
|
|
38
|
+
getFilterFormTemplate()
|
|
39
|
+
{
|
|
40
|
+
return 'PRSP-Filter-ExternalJoin-NumericMatch-Template';
|
|
41
|
+
}
|
|
50
42
|
}
|
|
51
43
|
|
|
52
44
|
module.exports = ViewRecordSetSUBSETFilterExternalJoinNumericMatch;
|
|
@@ -6,9 +6,6 @@ const _DEFAULT_CONFIGURATION_Filter_ExternalJoin_NumericRange =
|
|
|
6
6
|
{
|
|
7
7
|
ViewIdentifier: 'PRSP-Filter-ExternalJoin-NumericRange',
|
|
8
8
|
|
|
9
|
-
DefaultRenderable: 'PRSP_Renderable_Filter_ExternalJoin_NumericRange',
|
|
10
|
-
DefaultDestinationAddress: '#PRSP_Renderable_Filter_ExternalJoin_NumericRange',
|
|
11
|
-
|
|
12
9
|
Templates:
|
|
13
10
|
[
|
|
14
11
|
{
|
|
@@ -21,16 +18,6 @@ const _DEFAULT_CONFIGURATION_Filter_ExternalJoin_NumericRange =
|
|
|
21
18
|
`
|
|
22
19
|
}
|
|
23
20
|
],
|
|
24
|
-
|
|
25
|
-
Renderables:
|
|
26
|
-
[
|
|
27
|
-
{
|
|
28
|
-
RenderableHash: 'PRSP_Renderable_Filter_ExternalJoin_NumericRange',
|
|
29
|
-
TemplateHash: 'PRSP-Filter-ExternalJoin-NumericRange-Template',
|
|
30
|
-
DestinationAddress: '#PRSP_Filter_ExternalJoin_NumericRange_Container',
|
|
31
|
-
RenderMethod: 'replace'
|
|
32
|
-
}
|
|
33
|
-
],
|
|
34
21
|
};
|
|
35
22
|
|
|
36
23
|
class ViewRecordSetSUBSETFilterExternalJoinNumericRange extends ViewRecordSetSUBSETFilterBaseRange
|
|
@@ -50,6 +37,11 @@ class ViewRecordSetSUBSETFilterExternalJoinNumericRange extends ViewRecordSetSUB
|
|
|
50
37
|
pRecord.StartClauseDescriptor.DataType = 'Number';
|
|
51
38
|
pRecord.EndClauseDescriptor.DataType = 'Number';
|
|
52
39
|
}
|
|
40
|
+
|
|
41
|
+
getFilterFormTemplate()
|
|
42
|
+
{
|
|
43
|
+
return 'PRSP-Filter-ExternalJoin-NumericRange-Template';
|
|
44
|
+
}
|
|
53
45
|
}
|
|
54
46
|
|
|
55
47
|
module.exports = ViewRecordSetSUBSETFilterExternalJoinNumericRange;
|
|
@@ -6,9 +6,6 @@ const _DEFAULT_CONFIGURATION_Filter_ExternalJoinStringMatch =
|
|
|
6
6
|
{
|
|
7
7
|
ViewIdentifier: 'PRSP-Filter-ExternalJoinStringMatch',
|
|
8
8
|
|
|
9
|
-
DefaultRenderable: 'PRSP_Renderable_Filter_ExternalJoinStringMatch',
|
|
10
|
-
DefaultDestinationAddress: '#PRSP_Renderable_Filter_ExternalJoinStringMatch',
|
|
11
|
-
|
|
12
9
|
Templates:
|
|
13
10
|
[
|
|
14
11
|
{
|
|
@@ -20,16 +17,6 @@ const _DEFAULT_CONFIGURATION_Filter_ExternalJoinStringMatch =
|
|
|
20
17
|
`
|
|
21
18
|
}
|
|
22
19
|
],
|
|
23
|
-
|
|
24
|
-
Renderables:
|
|
25
|
-
[
|
|
26
|
-
{
|
|
27
|
-
RenderableHash: 'PRSP_Renderable_Filter_ExternalJoinStringMatch',
|
|
28
|
-
TemplateHash: 'PRSP-Filter-ExternalJoinStringMatch-Template',
|
|
29
|
-
DestinationAddress: '#PRSP_Filter_ExternalJoinStringMatch_Container',
|
|
30
|
-
RenderMethod: 'replace'
|
|
31
|
-
}
|
|
32
|
-
],
|
|
33
20
|
};
|
|
34
21
|
|
|
35
22
|
class ViewRecordSetSUBSETFilterExternalJoinStringMatch extends ViewRecordSetSUBSETFilterBase
|
|
@@ -38,6 +25,11 @@ class ViewRecordSetSUBSETFilterExternalJoinStringMatch extends ViewRecordSetSUBS
|
|
|
38
25
|
{
|
|
39
26
|
super(pFable, pOptions, pServiceHash);
|
|
40
27
|
}
|
|
28
|
+
|
|
29
|
+
getFilterFormTemplate()
|
|
30
|
+
{
|
|
31
|
+
return 'PRSP-Filter-ExternalJoinStringMatch-Template';
|
|
32
|
+
}
|
|
41
33
|
}
|
|
42
34
|
|
|
43
35
|
module.exports = ViewRecordSetSUBSETFilterExternalJoinStringMatch;
|
|
@@ -6,9 +6,6 @@ const _DEFAULT_CONFIGURATION_Filter_ExternalJoin_StringRange =
|
|
|
6
6
|
{
|
|
7
7
|
ViewIdentifier: 'PRSP-Filter-ExternalJoin-StringRange',
|
|
8
8
|
|
|
9
|
-
DefaultRenderable: 'PRSP_Renderable_Filter_ExternalJoin_StringRange',
|
|
10
|
-
DefaultDestinationAddress: '#PRSP_Renderable_Filter_ExternalJoin_StringRange',
|
|
11
|
-
|
|
12
9
|
Templates:
|
|
13
10
|
[
|
|
14
11
|
{
|
|
@@ -21,16 +18,6 @@ const _DEFAULT_CONFIGURATION_Filter_ExternalJoin_StringRange =
|
|
|
21
18
|
`
|
|
22
19
|
}
|
|
23
20
|
],
|
|
24
|
-
|
|
25
|
-
Renderables:
|
|
26
|
-
[
|
|
27
|
-
{
|
|
28
|
-
RenderableHash: 'PRSP_Renderable_Filter_ExternalJoin_StringRange',
|
|
29
|
-
TemplateHash: 'PRSP-Filter-ExternalJoin-StringRange-Template',
|
|
30
|
-
DestinationAddress: '#PRSP_Filter_ExternalJoin_StringRange_Container',
|
|
31
|
-
RenderMethod: 'replace'
|
|
32
|
-
}
|
|
33
|
-
],
|
|
34
21
|
};
|
|
35
22
|
|
|
36
23
|
class ViewRecordSetSUBSETFilterExternalJoinStringRange extends ViewRecordSetSUBSETFilterBaseRange
|
|
@@ -39,6 +26,11 @@ class ViewRecordSetSUBSETFilterExternalJoinStringRange extends ViewRecordSetSUBS
|
|
|
39
26
|
{
|
|
40
27
|
super(pFable, pOptions, pServiceHash);
|
|
41
28
|
}
|
|
29
|
+
|
|
30
|
+
getFilterFormTemplate()
|
|
31
|
+
{
|
|
32
|
+
return 'PRSP-Filter-ExternalJoin-StringRange';
|
|
33
|
+
}
|
|
42
34
|
}
|
|
43
35
|
|
|
44
36
|
module.exports = ViewRecordSetSUBSETFilterExternalJoinStringRange;
|
|
@@ -6,9 +6,6 @@ const _DEFAULT_CONFIGURATION_Filter_InternalJoin_DateMatch =
|
|
|
6
6
|
{
|
|
7
7
|
ViewIdentifier: 'PRSP-Filter-InternalJoin-DateMatch',
|
|
8
8
|
|
|
9
|
-
DefaultRenderable: 'PRSP_Renderable_Filter_InternalJoin_DateMatch',
|
|
10
|
-
DefaultDestinationAddress: '#PRSP_Renderable_Filter_InternalJoin_DateMatch',
|
|
11
|
-
|
|
12
9
|
Templates:
|
|
13
10
|
[
|
|
14
11
|
{
|
|
@@ -20,16 +17,6 @@ const _DEFAULT_CONFIGURATION_Filter_InternalJoin_DateMatch =
|
|
|
20
17
|
`
|
|
21
18
|
}
|
|
22
19
|
],
|
|
23
|
-
|
|
24
|
-
Renderables:
|
|
25
|
-
[
|
|
26
|
-
{
|
|
27
|
-
RenderableHash: 'PRSP_Renderable_Filter_InternalJoin_DateMatch',
|
|
28
|
-
TemplateHash: 'PRSP-Filter-InternalJoin-DateMatch-Template',
|
|
29
|
-
DestinationAddress: '#PRSP_Filter_InternalJoin_DateMatch_Container',
|
|
30
|
-
RenderMethod: 'replace'
|
|
31
|
-
}
|
|
32
|
-
],
|
|
33
20
|
};
|
|
34
21
|
|
|
35
22
|
class ViewRecordSetSUBSETFilterInternalJoinDateMatch extends ViewRecordSetSUBSETFilterBase
|
|
@@ -48,6 +35,11 @@ class ViewRecordSetSUBSETFilterInternalJoinDateMatch extends ViewRecordSetSUBSET
|
|
|
48
35
|
|
|
49
36
|
pRecord.ClauseDescriptor.DataType = 'DateTime';
|
|
50
37
|
}
|
|
38
|
+
|
|
39
|
+
getFilterFormTemplate()
|
|
40
|
+
{
|
|
41
|
+
return 'PRSP-Filter-InternalJoin-DateMatch-Template';
|
|
42
|
+
}
|
|
51
43
|
}
|
|
52
44
|
|
|
53
45
|
module.exports = ViewRecordSetSUBSETFilterInternalJoinDateMatch;
|
|
@@ -6,9 +6,6 @@ const _DEFAULT_CONFIGURATION_Filter_InternalJoin_DateRange =
|
|
|
6
6
|
{
|
|
7
7
|
ViewIdentifier: 'PRSP-Filter-InternalJoin-DateRange',
|
|
8
8
|
|
|
9
|
-
DefaultRenderable: 'PRSP_Renderable_Filter_InternalJoin_DateRange',
|
|
10
|
-
DefaultDestinationAddress: '#PRSP_Renderable_Filter_InternalJoin_DateRange',
|
|
11
|
-
|
|
12
9
|
Templates:
|
|
13
10
|
[
|
|
14
11
|
{
|
|
@@ -21,16 +18,6 @@ const _DEFAULT_CONFIGURATION_Filter_InternalJoin_DateRange =
|
|
|
21
18
|
`
|
|
22
19
|
}
|
|
23
20
|
],
|
|
24
|
-
|
|
25
|
-
Renderables:
|
|
26
|
-
[
|
|
27
|
-
{
|
|
28
|
-
RenderableHash: 'PRSP_Renderable_Filter_InternalJoin_DateRange',
|
|
29
|
-
TemplateHash: 'PRSP-Filter-InternalJoin-DateRange-Template',
|
|
30
|
-
DestinationAddress: '#PRSP_Filter_InternalJoin_DateRange_Container',
|
|
31
|
-
RenderMethod: 'replace'
|
|
32
|
-
}
|
|
33
|
-
],
|
|
34
21
|
};
|
|
35
22
|
|
|
36
23
|
class ViewRecordSetSUBSETFilterInternalJoinDateRange extends ViewRecordSetSUBSETFilterBaseRange
|
|
@@ -50,6 +37,11 @@ class ViewRecordSetSUBSETFilterInternalJoinDateRange extends ViewRecordSetSUBSET
|
|
|
50
37
|
pRecord.StartClauseDescriptor.DataType = 'DateTime';
|
|
51
38
|
pRecord.EndClauseDescriptor.DataType = 'DateTime';
|
|
52
39
|
}
|
|
40
|
+
|
|
41
|
+
getFilterFormTemplate()
|
|
42
|
+
{
|
|
43
|
+
return 'PRSP-Filter-InternalJoin-DateRange-Template';
|
|
44
|
+
}
|
|
53
45
|
}
|
|
54
46
|
|
|
55
47
|
module.exports = ViewRecordSetSUBSETFilterInternalJoinDateRange;
|
|
@@ -6,9 +6,6 @@ const _DEFAULT_CONFIGURATION_Filter_InternalJoin_NumericMatch =
|
|
|
6
6
|
{
|
|
7
7
|
ViewIdentifier: 'PRSP-Filter-InternalJoin-NumericMatch',
|
|
8
8
|
|
|
9
|
-
DefaultRenderable: 'PRSP_Renderable_Filter_InternalJoin_NumericMatch',
|
|
10
|
-
DefaultDestinationAddress: '#PRSP_Renderable_Filter_InternalJoin_NumericMatch',
|
|
11
|
-
|
|
12
9
|
Templates:
|
|
13
10
|
[
|
|
14
11
|
{
|
|
@@ -20,16 +17,6 @@ const _DEFAULT_CONFIGURATION_Filter_InternalJoin_NumericMatch =
|
|
|
20
17
|
`
|
|
21
18
|
}
|
|
22
19
|
],
|
|
23
|
-
|
|
24
|
-
Renderables:
|
|
25
|
-
[
|
|
26
|
-
{
|
|
27
|
-
RenderableHash: 'PRSP_Renderable_Filter_InternalJoin_NumericMatch',
|
|
28
|
-
TemplateHash: 'PRSP-Filter-InternalJoin-NumericMatch-Template',
|
|
29
|
-
DestinationAddress: '#PRSP_Filter_InternalJoin_NumericMatch_Container',
|
|
30
|
-
RenderMethod: 'replace'
|
|
31
|
-
}
|
|
32
|
-
],
|
|
33
20
|
};
|
|
34
21
|
|
|
35
22
|
class ViewRecordSetSUBSETFilterInternalJoinNumericMatch extends ViewRecordSetSUBSETFilterBase
|
|
@@ -48,6 +35,11 @@ class ViewRecordSetSUBSETFilterInternalJoinNumericMatch extends ViewRecordSetSUB
|
|
|
48
35
|
|
|
49
36
|
pRecord.ClauseDescriptor.DataType = 'Number';
|
|
50
37
|
}
|
|
38
|
+
|
|
39
|
+
getFilterFormTemplate()
|
|
40
|
+
{
|
|
41
|
+
return 'PRSP-Filter-InternalJoin-NumericMatch-Template';
|
|
42
|
+
}
|
|
51
43
|
}
|
|
52
44
|
|
|
53
45
|
module.exports = ViewRecordSetSUBSETFilterInternalJoinNumericMatch;
|
|
@@ -6,9 +6,6 @@ const _DEFAULT_CONFIGURATION_Filter_InternalJoin_NumericRange =
|
|
|
6
6
|
{
|
|
7
7
|
ViewIdentifier: 'PRSP-Filter-InternalJoin-NumericRange',
|
|
8
8
|
|
|
9
|
-
DefaultRenderable: 'PRSP_Renderable_Filter_InternalJoin_NumericRange',
|
|
10
|
-
DefaultDestinationAddress: '#PRSP_Renderable_Filter_InternalJoin_NumericRange',
|
|
11
|
-
|
|
12
9
|
Templates:
|
|
13
10
|
[
|
|
14
11
|
{
|
|
@@ -21,16 +18,6 @@ const _DEFAULT_CONFIGURATION_Filter_InternalJoin_NumericRange =
|
|
|
21
18
|
`
|
|
22
19
|
},
|
|
23
20
|
],
|
|
24
|
-
|
|
25
|
-
Renderables:
|
|
26
|
-
[
|
|
27
|
-
{
|
|
28
|
-
RenderableHash: 'PRSP_Renderable_Filter_InternalJoin_NumericRange',
|
|
29
|
-
TemplateHash: 'PRSP-Filter-InternalJoin-NumericRange-Template',
|
|
30
|
-
DestinationAddress: '#PRSP_Filter_InternalJoin_NumericRange_Container',
|
|
31
|
-
RenderMethod: 'replace'
|
|
32
|
-
}
|
|
33
|
-
],
|
|
34
21
|
};
|
|
35
22
|
|
|
36
23
|
class ViewRecordSetSUBSETFilterInternalJoinNumericRange extends ViewRecordSetSUBSETFilterBaseRange
|
|
@@ -50,6 +37,11 @@ class ViewRecordSetSUBSETFilterInternalJoinNumericRange extends ViewRecordSetSUB
|
|
|
50
37
|
pRecord.StartClauseDescriptor.DataType = 'Number';
|
|
51
38
|
pRecord.EndClauseDescriptor.DataType = 'Number';
|
|
52
39
|
}
|
|
40
|
+
|
|
41
|
+
getFilterFormTemplate()
|
|
42
|
+
{
|
|
43
|
+
return 'PRSP-Filter-InternalJoin-NumericRange-Template';
|
|
44
|
+
}
|
|
53
45
|
}
|
|
54
46
|
|
|
55
47
|
module.exports = ViewRecordSetSUBSETFilterInternalJoinNumericRange;
|
|
@@ -6,9 +6,6 @@ const _DEFAULT_CONFIGURATION_Filter_InternalJoin_StringMatch =
|
|
|
6
6
|
{
|
|
7
7
|
ViewIdentifier: 'PRSP-Filter-InternalJoin-StringMatch',
|
|
8
8
|
|
|
9
|
-
DefaultRenderable: 'PRSP_Renderable_Filter_InternalJoin_StringMatch',
|
|
10
|
-
DefaultDestinationAddress: '#PRSP_Renderable_Filter_InternalJoin_StringMatch',
|
|
11
|
-
|
|
12
9
|
Templates:
|
|
13
10
|
[
|
|
14
11
|
{
|
|
@@ -20,16 +17,6 @@ const _DEFAULT_CONFIGURATION_Filter_InternalJoin_StringMatch =
|
|
|
20
17
|
`
|
|
21
18
|
}
|
|
22
19
|
],
|
|
23
|
-
|
|
24
|
-
Renderables:
|
|
25
|
-
[
|
|
26
|
-
{
|
|
27
|
-
RenderableHash: 'PRSP_Renderable_Filter_InternalJoin_StringMatch',
|
|
28
|
-
TemplateHash: 'PRSP-Filter-InternalJoin-StringMatch-Template',
|
|
29
|
-
DestinationAddress: '#PRSP_Filter_InternalJoin_StringMatch_Container',
|
|
30
|
-
RenderMethod: 'replace'
|
|
31
|
-
}
|
|
32
|
-
],
|
|
33
20
|
};
|
|
34
21
|
|
|
35
22
|
class ViewRecordSetSUBSETFilterInternalJoinStringMatch extends ViewRecordSetSUBSETFilterBase
|
|
@@ -38,6 +25,11 @@ class ViewRecordSetSUBSETFilterInternalJoinStringMatch extends ViewRecordSetSUBS
|
|
|
38
25
|
{
|
|
39
26
|
super(pFable, pOptions, pServiceHash);
|
|
40
27
|
}
|
|
28
|
+
|
|
29
|
+
getFilterFormTemplate()
|
|
30
|
+
{
|
|
31
|
+
return 'PRSP-Filter-InternalJoin-StringMatch-Template';
|
|
32
|
+
}
|
|
41
33
|
}
|
|
42
34
|
|
|
43
35
|
module.exports = ViewRecordSetSUBSETFilterInternalJoinStringMatch;
|
|
@@ -6,9 +6,6 @@ const _DEFAULT_CONFIGURATION_Filter_InternalJoin_StringRange =
|
|
|
6
6
|
{
|
|
7
7
|
ViewIdentifier: 'PRSP-Filter-InternalJoin-StringRange',
|
|
8
8
|
|
|
9
|
-
DefaultRenderable: 'PRSP_Renderable_Filter_InternalJoin_StringRange',
|
|
10
|
-
DefaultDestinationAddress: '#PRSP_Renderable_Filter_InternalJoin_StringRange',
|
|
11
|
-
|
|
12
9
|
Templates:
|
|
13
10
|
[
|
|
14
11
|
{
|
|
@@ -21,16 +18,6 @@ const _DEFAULT_CONFIGURATION_Filter_InternalJoin_StringRange =
|
|
|
21
18
|
`
|
|
22
19
|
}
|
|
23
20
|
],
|
|
24
|
-
|
|
25
|
-
Renderables:
|
|
26
|
-
[
|
|
27
|
-
{
|
|
28
|
-
RenderableHash: 'PRSP_Renderable_Filter_InternalJoin_StringRange',
|
|
29
|
-
TemplateHash: 'PRSP-Filter-InternalJoin-StringRange-Template',
|
|
30
|
-
DestinationAddress: '#PRSP_Filter_InternalJoin_StringRange_Container',
|
|
31
|
-
RenderMethod: 'replace'
|
|
32
|
-
}
|
|
33
|
-
],
|
|
34
21
|
};
|
|
35
22
|
|
|
36
23
|
class ViewRecordSetSUBSETFilterInternalJoinStringRange extends ViewRecordSetSUBSETFilterBaseRange
|
|
@@ -39,6 +26,11 @@ class ViewRecordSetSUBSETFilterInternalJoinStringRange extends ViewRecordSetSUBS
|
|
|
39
26
|
{
|
|
40
27
|
super(pFable, pOptions, pServiceHash);
|
|
41
28
|
}
|
|
29
|
+
|
|
30
|
+
getFilterFormTemplate()
|
|
31
|
+
{
|
|
32
|
+
return 'PRSP-Filter-InternalJoin-StringRange-Template';
|
|
33
|
+
}
|
|
42
34
|
}
|
|
43
35
|
|
|
44
36
|
module.exports = ViewRecordSetSUBSETFilterInternalJoinStringRange;
|
|
@@ -6,9 +6,6 @@ const _DEFAULT_CONFIGURATION_Filter_NumericMatch =
|
|
|
6
6
|
{
|
|
7
7
|
ViewIdentifier: 'PRSP-Filter-NumericMatch',
|
|
8
8
|
|
|
9
|
-
DefaultRenderable: 'PRSP_Renderable_Filter_NumericMatch',
|
|
10
|
-
DefaultDestinationAddress: '#PRSP_Renderable_Filter_NumericMatch',
|
|
11
|
-
|
|
12
9
|
Templates:
|
|
13
10
|
[
|
|
14
11
|
{
|
|
@@ -20,16 +17,6 @@ const _DEFAULT_CONFIGURATION_Filter_NumericMatch =
|
|
|
20
17
|
`
|
|
21
18
|
}
|
|
22
19
|
],
|
|
23
|
-
|
|
24
|
-
Renderables:
|
|
25
|
-
[
|
|
26
|
-
{
|
|
27
|
-
RenderableHash: 'PRSP_Renderable_Filter_NumericMatch',
|
|
28
|
-
TemplateHash: 'PRSP-Filter-NumericMatch-Template',
|
|
29
|
-
DestinationAddress: '#PRSP_Filter_NumericMatch_Container',
|
|
30
|
-
RenderMethod: 'replace'
|
|
31
|
-
}
|
|
32
|
-
],
|
|
33
20
|
};
|
|
34
21
|
|
|
35
22
|
class ViewRecordSetSUBSETFilterNumericMatch extends ViewRecordSetSUBSETFilterBase
|
|
@@ -48,6 +35,11 @@ class ViewRecordSetSUBSETFilterNumericMatch extends ViewRecordSetSUBSETFilterBas
|
|
|
48
35
|
|
|
49
36
|
pRecord.ClauseDescriptor.DataType = 'Number';
|
|
50
37
|
}
|
|
38
|
+
|
|
39
|
+
getFilterFormTemplate()
|
|
40
|
+
{
|
|
41
|
+
return 'PRSP-Filter-NumericMatch-Template';
|
|
42
|
+
}
|
|
51
43
|
}
|
|
52
44
|
|
|
53
45
|
module.exports = ViewRecordSetSUBSETFilterNumericMatch;
|
|
@@ -6,9 +6,6 @@ const _DEFAULT_CONFIGURATION_Filter_NumericRange =
|
|
|
6
6
|
{
|
|
7
7
|
ViewIdentifier: 'PRSP-Filter-NumericRange',
|
|
8
8
|
|
|
9
|
-
DefaultRenderable: 'PRSP_Renderable_Filter_NumericRange',
|
|
10
|
-
DefaultDestinationAddress: '#PRSP_Renderable_Filter_NumericRange',
|
|
11
|
-
|
|
12
9
|
Templates:
|
|
13
10
|
[
|
|
14
11
|
{
|
|
@@ -21,16 +18,6 @@ const _DEFAULT_CONFIGURATION_Filter_NumericRange =
|
|
|
21
18
|
`
|
|
22
19
|
}
|
|
23
20
|
],
|
|
24
|
-
|
|
25
|
-
Renderables:
|
|
26
|
-
[
|
|
27
|
-
{
|
|
28
|
-
RenderableHash: 'PRSP_Renderable_Filter_NumericRange',
|
|
29
|
-
TemplateHash: 'PRSP-Filter-NumericRange-Template',
|
|
30
|
-
DestinationAddress: '#PRSP_Filter_NumericRange_Container',
|
|
31
|
-
RenderMethod: 'replace'
|
|
32
|
-
}
|
|
33
|
-
],
|
|
34
21
|
};
|
|
35
22
|
|
|
36
23
|
class ViewRecordSetSUBSETFilterNumericRange extends ViewRecordSetSUBSETFilterBaseRange
|
|
@@ -50,6 +37,11 @@ class ViewRecordSetSUBSETFilterNumericRange extends ViewRecordSetSUBSETFilterBas
|
|
|
50
37
|
pRecord.StartClauseDescriptor.DataType = 'Number';
|
|
51
38
|
pRecord.EndClauseDescriptor.DataType = 'Number';
|
|
52
39
|
}
|
|
40
|
+
|
|
41
|
+
getFilterFormTemplate()
|
|
42
|
+
{
|
|
43
|
+
return 'PRSP-Filter-NumericRange-Template';
|
|
44
|
+
}
|
|
53
45
|
}
|
|
54
46
|
|
|
55
47
|
module.exports = ViewRecordSetSUBSETFilterNumericRange;
|
|
@@ -6,9 +6,6 @@ const _DEFAULT_CONFIGURATION_Filter_StringMatch =
|
|
|
6
6
|
{
|
|
7
7
|
ViewIdentifier: 'PRSP-Filter-StringMatch',
|
|
8
8
|
|
|
9
|
-
DefaultRenderable: 'PRSP_Renderable_Filter_StringMatch',
|
|
10
|
-
DefaultDestinationAddress: '#PRSP_Renderable_Filter_StringMatch',
|
|
11
|
-
|
|
12
9
|
Templates:
|
|
13
10
|
[
|
|
14
11
|
{
|
|
@@ -20,16 +17,6 @@ const _DEFAULT_CONFIGURATION_Filter_StringMatch =
|
|
|
20
17
|
`
|
|
21
18
|
}
|
|
22
19
|
],
|
|
23
|
-
|
|
24
|
-
Renderables:
|
|
25
|
-
[
|
|
26
|
-
{
|
|
27
|
-
RenderableHash: 'PRSP_Renderable_Filter_StringMatch',
|
|
28
|
-
TemplateHash: 'PRSP-Filter-StringMatch-Template',
|
|
29
|
-
DestinationAddress: '#PRSP_Filter_StringMatch_Container',
|
|
30
|
-
RenderMethod: 'replace'
|
|
31
|
-
}
|
|
32
|
-
],
|
|
33
20
|
};
|
|
34
21
|
|
|
35
22
|
class ViewRecordSetSUBSETFilterStringMatch extends ViewRecordSetSUBSETFilterBase
|
|
@@ -38,6 +25,11 @@ class ViewRecordSetSUBSETFilterStringMatch extends ViewRecordSetSUBSETFilterBase
|
|
|
38
25
|
{
|
|
39
26
|
super(pFable, pOptions, pServiceHash);
|
|
40
27
|
}
|
|
28
|
+
|
|
29
|
+
getFilterFormTemplate()
|
|
30
|
+
{
|
|
31
|
+
return 'PRSP-Filter-StringMatch-Template';
|
|
32
|
+
}
|
|
41
33
|
}
|
|
42
34
|
|
|
43
35
|
module.exports = ViewRecordSetSUBSETFilterStringMatch;
|
|
@@ -6,9 +6,6 @@ const _DEFAULT_CONFIGURATION_Filter_StringRange =
|
|
|
6
6
|
{
|
|
7
7
|
ViewIdentifier: 'PRSP-Filter-StringRange',
|
|
8
8
|
|
|
9
|
-
DefaultRenderable: 'PRSP_Renderable_Filter_StringRange',
|
|
10
|
-
DefaultDestinationAddress: '#PRSP_Renderable_Filter_StringRange',
|
|
11
|
-
|
|
12
9
|
Templates:
|
|
13
10
|
[
|
|
14
11
|
{
|
|
@@ -21,16 +18,6 @@ const _DEFAULT_CONFIGURATION_Filter_StringRange =
|
|
|
21
18
|
`
|
|
22
19
|
}
|
|
23
20
|
],
|
|
24
|
-
|
|
25
|
-
Renderables:
|
|
26
|
-
[
|
|
27
|
-
{
|
|
28
|
-
RenderableHash: 'PRSP_Renderable_Filter_StringRange',
|
|
29
|
-
TemplateHash: 'PRSP-Filter-StringRange-Template',
|
|
30
|
-
DestinationAddress: '#PRSP_Filter_StringRange_Container',
|
|
31
|
-
RenderMethod: 'replace'
|
|
32
|
-
}
|
|
33
|
-
],
|
|
34
21
|
};
|
|
35
22
|
|
|
36
23
|
class ViewRecordSetSUBSETFilterStringRange extends ViewRecordSetSUBSETFilterBaseRange
|
|
@@ -39,6 +26,11 @@ class ViewRecordSetSUBSETFilterStringRange extends ViewRecordSetSUBSETFilterBase
|
|
|
39
26
|
{
|
|
40
27
|
super(pFable, pOptions, pServiceHash);
|
|
41
28
|
}
|
|
29
|
+
|
|
30
|
+
getFilterFormTemplate()
|
|
31
|
+
{
|
|
32
|
+
return 'PRSP-Filter-StringRange-Template';
|
|
33
|
+
}
|
|
42
34
|
}
|
|
43
35
|
|
|
44
36
|
module.exports = ViewRecordSetSUBSETFilterStringRange;
|
|
@@ -43,6 +43,8 @@ declare class RecordSetProviderBase extends libPictProvider {
|
|
|
43
43
|
fable: import("pict");
|
|
44
44
|
/** @type {import('pict')} */
|
|
45
45
|
pict: import("pict");
|
|
46
|
+
/** @type {Record<string, any>} */
|
|
47
|
+
_FilterSchema: Record<string, any>;
|
|
46
48
|
/**
|
|
47
49
|
* Get a record by its ID or GUID.
|
|
48
50
|
*
|
|
@@ -145,6 +147,43 @@ declare class RecordSetProviderBase extends libPictProvider {
|
|
|
145
147
|
* @return {Promise<void>}
|
|
146
148
|
*/
|
|
147
149
|
decorateCoreRecords(pRecords: Array<Record<string, any>>): Promise<void>;
|
|
150
|
+
getFilterSchemaKeys(): string[];
|
|
151
|
+
/**
|
|
152
|
+
* @param {string} pFilterKey - The filter key to get the schema for.
|
|
153
|
+
*
|
|
154
|
+
* @return {Record<string, any>} The schema for the filter clause.
|
|
155
|
+
*/
|
|
156
|
+
getFilterClauseSchemaForKey(pFilterKey: string): Record<string, any>;
|
|
157
|
+
/**
|
|
158
|
+
* @return {Record<string, Record<string, any>>} The schema for the filter clauses.
|
|
159
|
+
*/
|
|
160
|
+
getFilterSchema(): Record<string, Record<string, any>>;
|
|
161
|
+
/**
|
|
162
|
+
* @param {string} pFilterKey - The filter key to add the clause for.
|
|
163
|
+
* @param {string} pClauseKey - The clause key to add.
|
|
164
|
+
*/
|
|
165
|
+
addFilterClause(pFilterKey: string, pClauseKey: string): void;
|
|
166
|
+
/**
|
|
167
|
+
*/
|
|
168
|
+
clearFilterClauses(): void;
|
|
169
|
+
/**
|
|
170
|
+
* @param {string} pSpecificFilterClauseHash - The hash of the specific filter clause to remove.
|
|
171
|
+
*/
|
|
172
|
+
removeFilterClause(pSpecificFilterClauseHash: string): void;
|
|
173
|
+
/**
|
|
174
|
+
* @return {Array<Record<string, any>>} The filter clauses.
|
|
175
|
+
*/
|
|
176
|
+
getFilterClauses(): Array<Record<string, any>>;
|
|
177
|
+
/**
|
|
178
|
+
* @param {string} pSpecificFilterClauseHash - The hash of the specific filter clause to move.
|
|
179
|
+
* @param {number} pOrdinal - The ordinal position to move the filter clause to.
|
|
180
|
+
*/
|
|
181
|
+
moveFilterClauseTo(pSpecificFilterClauseHash: string, pOrdinal: number): void;
|
|
182
|
+
/**
|
|
183
|
+
* @param {string} pSpecificFilterClauseHash - The hash of the specific filter clause to move.
|
|
184
|
+
* @param {number} pOrdinalOffset - The ordinal offset to move the filter clause by.
|
|
185
|
+
*/
|
|
186
|
+
moveFilterClauseBy(pSpecificFilterClauseHash: string, pOrdinalOffset: number): void;
|
|
148
187
|
}
|
|
149
188
|
declare namespace RecordSetProviderBase {
|
|
150
189
|
export { _DefaultProviderConfiguration as default_configuration, RecordSetSearchRangeFacet, RecordSetSearchFacetPayload, RecordSetResult, RecordSetFilter };
|
|
@@ -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;IAEC;;;;;OAKG;IACH,oBAJW,OAAO,MAAM,CAAC,aACd,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,iBACnB,MAAM,
|
|
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,EAiBhB;IAPA,6BAA6B;IAC7B,OADW,OAAO,MAAM,CAAC,CACf;IACV,6BAA6B;IAC7B,MADW,OAAO,MAAM,CAAC,CAChB;IAET,kCAAkC;IAClC,eADW,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CACN;IAGzB;;;;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;IAED,gCAGC;IAED;;;;OAIG;IACH,wCAJW,MAAM,GAEL,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAK9B;IAED;;OAEG;IACH,mBAFY,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAW9C;IAED;;;OAGG;IACH,4BAHW,MAAM,cACN,MAAM,QAehB;IAED;OACG;IACH,2BAQC;IAED;;OAEG;IACH,8CAFW,MAAM,QAiBhB;IAED;;OAEG;IACH,oBAFY,KAAK,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,CAarC;IAED;;;OAGG;IACH,8CAHW,MAAM,YACN,MAAM,QAuBhB;IAED;;;OAGG;IACH,8CAHW,MAAM,kBACN,MAAM,QAwBhB;CACD;;;;;AA/YD;;;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"}
|