pict-section-recordset 1.0.53 → 1.0.55

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 (54) hide show
  1. package/example_applications/simple_entity/Simple-RecordSet-Application.js +221 -1
  2. package/example_applications/simple_entity/html/index.html +2 -0
  3. package/package.json +1 -1
  4. package/source/application/Pict-Application-RecordSet.js +2 -0
  5. package/source/providers/RecordSet-Link-Manager.js +1 -1
  6. package/source/providers/RecordSet-RecordProvider-Base.js +10 -0
  7. package/source/providers/RecordSet-RecordProvider-MeadowEndpoints.js +91 -14
  8. package/source/providers/RecordSet-Router.js +1 -1
  9. package/source/services/RecordsSet-MetaController.js +17 -6
  10. package/source/views/RecordSet-RecordBaseView.js +1 -1
  11. package/source/views/create/RecordSet-Create.js +344 -0
  12. package/source/views/dashboard/RecordSet-Dashboard.js +3 -2
  13. package/source/views/filters/RecordSet-Filter-Base-Range.js +4 -3
  14. package/source/views/filters/RecordSet-Filter-Base.js +2 -1
  15. package/source/views/filters/RecordSet-Filter-DateMatch.js +2 -1
  16. package/source/views/filters/RecordSet-Filter-DateRange.js +4 -2
  17. package/source/views/filters/RecordSet-Filter-ExternalJoinDateMatch.js +2 -1
  18. package/source/views/filters/RecordSet-Filter-ExternalJoinDateRange.js +4 -2
  19. package/source/views/filters/RecordSet-Filter-ExternalJoinNumericMatch.js +2 -1
  20. package/source/views/filters/RecordSet-Filter-ExternalJoinNumericRange.js +4 -2
  21. package/source/views/filters/RecordSet-Filter-ExternalJoinSelectedValue.js +2 -1
  22. package/source/views/filters/RecordSet-Filter-ExternalJoinSelectedValueList.js +2 -1
  23. package/source/views/filters/RecordSet-Filter-InternalJoinDateMatch.js +2 -1
  24. package/source/views/filters/RecordSet-Filter-InternalJoinDateRange.js +4 -2
  25. package/source/views/filters/RecordSet-Filter-InternalJoinNumericMatch.js +2 -1
  26. package/source/views/filters/RecordSet-Filter-InternalJoinNumericRange.js +4 -2
  27. package/source/views/filters/RecordSet-Filter-InternalJoinSelectedValue.js +2 -1
  28. package/source/views/filters/RecordSet-Filter-InternalJoinSelectedValueList.js +2 -1
  29. package/source/views/filters/RecordSet-Filter-NumericMatch.js +2 -1
  30. package/source/views/filters/RecordSet-Filter-NumericRange.js +4 -2
  31. package/source/views/list/RecordSet-List.js +2 -2
  32. package/source/views/read/RecordSet-Read.js +760 -44
  33. package/types/application/Pict-Application-RecordSet.d.ts.map +1 -1
  34. package/types/providers/RecordSet-RecordProvider-Base.d.ts +2 -0
  35. package/types/providers/RecordSet-RecordProvider-Base.d.ts.map +1 -1
  36. package/types/providers/RecordSet-RecordProvider-MeadowEndpoints.d.ts +3 -5
  37. package/types/providers/RecordSet-RecordProvider-MeadowEndpoints.d.ts.map +1 -1
  38. package/types/services/RecordsSet-MetaController.d.ts +1 -1
  39. package/types/services/RecordsSet-MetaController.d.ts.map +1 -1
  40. package/types/views/create/RecordSet-Create.d.ts +39 -0
  41. package/types/views/create/RecordSet-Create.d.ts.map +1 -0
  42. package/types/views/dashboard/RecordSet-Dashboard.d.ts.map +1 -1
  43. package/types/views/read/RecordSet-Read.d.ts +65 -5
  44. package/types/views/read/RecordSet-Read.d.ts.map +1 -1
  45. package/source/views/edit/RecordSet-Edit-HeaderEdit.js +0 -64
  46. package/source/views/edit/RecordSet-Edit-RecordEdit.js +0 -64
  47. package/source/views/edit/RecordSet-Edit-RecordEditControls.js +0 -64
  48. package/source/views/edit/RecordSet-Edit-RecordEditExtra.js +0 -64
  49. package/source/views/edit/RecordSet-Edit-TabBarEdit.js +0 -64
  50. package/source/views/edit/RecordSet-Edit.js +0 -64
  51. package/source/views/read/RecordSet-Read-HeaderRead.js +0 -64
  52. package/source/views/read/RecordSet-Read-RecordRead.js +0 -78
  53. package/source/views/read/RecordSet-Read-RecordReadExtra.js +0 -64
  54. package/source/views/read/RecordSet-Read-TabBarRead.js +0 -64
@@ -1,64 +0,0 @@
1
- const libPictView = require('pict-view');
2
-
3
- /** @type {Record<string, any>} */
4
- const _DEFAULT_CONFIGURATION_Read_HeaderRead =
5
- {
6
- ViewIdentifier: 'PRSP-Read-HeaderRead',
7
-
8
- DefaultRenderable: 'PRSP_Renderable_HeaderRead',
9
- DefaultDestinationAddress: '#PRSP_HeaderRead_Container',
10
- DefaultTemplateRecordAddress: false,
11
-
12
- // If this is set to true, when the App initializes this will.
13
- // While the App initializes, initialize will be called.
14
- AutoInitialize: false,
15
- AutoInitializeOrdinal: 0,
16
-
17
- // If this is set to true, when the App autorenders (on load) this will.
18
- // After the App initializes, render will be called.
19
- AutoRender: false,
20
- AutoRenderOrdinal: 0,
21
-
22
- AutoSolveWithApp: false,
23
- AutoSolveOrdinal: 0,
24
-
25
- CSS: false,
26
- CSSPriority: 500,
27
-
28
- Templates:
29
- [
30
- {
31
- Hash: 'PRSP-Read-HeaderRead-Template',
32
- Template: /*html*/`
33
- <!-- DefaultPackage pict view template: [PRSP-Read-HeaderRead-Template] -->
34
- <!-- DefaultPackage end view template: [PRSP-Read-HeaderRead-Template] -->
35
- `
36
- },
37
- ],
38
-
39
- Renderables:
40
- [
41
- {
42
- RenderableHash: 'PRSP_Renderable_HeaderRead',
43
- TemplateHash: 'PRSP-Read-HeaderRead-Template',
44
- DestinationAddress: '#PRSP_HeaderRead_Container',
45
- RenderMethod: 'replace'
46
- },
47
- ],
48
-
49
- Manifests: {},
50
- };
51
-
52
- class viewRecordSetReadHeaderRead extends libPictView
53
- {
54
- constructor(pFable, pOptions, pServiceHash)
55
- {
56
- let tmpOptions = Object.assign({}, _DEFAULT_CONFIGURATION_Read_HeaderRead, pOptions);
57
- super(pFable, tmpOptions, pServiceHash);
58
- }
59
- }
60
-
61
- module.exports = viewRecordSetReadHeaderRead;
62
-
63
- module.exports.default_configuration = _DEFAULT_CONFIGURATION_Read_HeaderRead;
64
-
@@ -1,78 +0,0 @@
1
- const libPictView = require('pict-view');
2
-
3
- /** @type {Record<string, any>} */
4
- const _DEFAULT_CONFIGURATION_Read_RecordRead =
5
- {
6
- ViewIdentifier: 'PRSP-Read-RecordRead',
7
-
8
- DefaultRenderable: 'PRSP_Renderable_RecordRead',
9
- DefaultDestinationAddress: '#PRSP_RecordRead_Container',
10
- DefaultTemplateRecordAddress: false,
11
-
12
- // If this is set to true, when the App initializes this will.
13
- // While the App initializes, initialize will be called.
14
- AutoInitialize: false,
15
- AutoInitializeOrdinal: 0,
16
-
17
- // If this is set to true, when the App autorenders (on load) this will.
18
- // After the App initializes, render will be called.
19
- AutoRender: false,
20
- AutoRenderOrdinal: 0,
21
-
22
- AutoSolveWithApp: false,
23
- AutoSolveOrdinal: 0,
24
-
25
- CSS: false,
26
- CSSPriority: 500,
27
-
28
- Templates:
29
- [
30
- {
31
- Hash: 'PRSP-Read-RecordRead-Template',
32
- Template: /*html*/`
33
- <!-- DefaultPackage pict view template: [PRSP-Read-RecordRead-Template] -->
34
- <div>
35
- {~TSWP:PRSP-Read-RecordRead-Template-Row:Record.DisplayFields:Record.Record~}
36
- </div>
37
- <!-- DefaultPackage end view template: [PRSP-Read-RecordRead-Template] -->
38
- `
39
- },
40
- {
41
- Hash: 'PRSP-Read-RecordRead-Template-Row',
42
- Template: /*html*/`
43
- <!-- DefaultPackage pict view template: [PRSP-Read-RecordRead-Template] -->
44
- <div>
45
- <span style="font-style: italic;">{~D:Record.Data.DisplayName~}</span>
46
- <span style="font-weight: bold;">{~DVBK:Record.Payload:Record.Data.Key~}</span>
47
- </div>
48
- <!-- DefaultPackage end view template: [PRSP-Read-RecordRead-Template] -->
49
- `
50
- },
51
- ],
52
-
53
- Renderables:
54
- [
55
- {
56
- RenderableHash: 'PRSP_Renderable_RecordRead',
57
- TemplateHash: 'PRSP-Read-RecordRead-Template',
58
- DestinationAddress: '#PRSP_RecordRead_Container',
59
- RenderMethod: 'replace'
60
- },
61
- ],
62
-
63
- Manifests: {},
64
- };
65
-
66
- class viewRecordSetReadRecordRead extends libPictView
67
- {
68
- constructor(pFable, pOptions, pServiceHash)
69
- {
70
- let tmpOptions = Object.assign({}, _DEFAULT_CONFIGURATION_Read_RecordRead, pOptions);
71
- super(pFable, tmpOptions, pServiceHash);
72
- }
73
- }
74
-
75
- module.exports = viewRecordSetReadRecordRead;
76
-
77
- module.exports.default_configuration = _DEFAULT_CONFIGURATION_Read_RecordRead;
78
-
@@ -1,64 +0,0 @@
1
- const libPictView = require('pict-view');
2
-
3
- /** @type {Record<string, any>} */
4
- const _DEFAULT_CONFIGURATION_Read_RecordReadExtra =
5
- {
6
- ViewIdentifier: 'PRSP-Read-RecordReadExtra',
7
-
8
- DefaultRenderable: 'PRSP_Renderable_RecordReadExtra',
9
- DefaultDestinationAddress: '#PRSP_RecordReadExtra_Container',
10
- DefaultTemplateRecordAddress: false,
11
-
12
- // If this is set to true, when the App initializes this will.
13
- // While the App initializes, initialize will be called.
14
- AutoInitialize: false,
15
- AutoInitializeOrdinal: 0,
16
-
17
- // If this is set to true, when the App autorenders (on load) this will.
18
- // After the App initializes, render will be called.
19
- AutoRender: false,
20
- AutoRenderOrdinal: 0,
21
-
22
- AutoSolveWithApp: false,
23
- AutoSolveOrdinal: 0,
24
-
25
- CSS: false,
26
- CSSPriority: 500,
27
-
28
- Templates:
29
- [
30
- {
31
- Hash: 'PRSP-Read-RecordReadExtra-Template',
32
- Template: /*html*/`
33
- <!-- DefaultPackage pict view template: [PRSP-Read-RecordReadExtra-Template] -->
34
- <!-- DefaultPackage end view template: [PRSP-Read-RecordReadExtra-Template] -->
35
- `
36
- },
37
- ],
38
-
39
- Renderables:
40
- [
41
- {
42
- RenderableHash: 'PRSP_Renderable_RecordReadExtra',
43
- TemplateHash: 'PRSP-Read-RecordReadExtra-Template',
44
- DestinationAddress: '#PRSP_RecordReadExtra_Container',
45
- RenderMethod: 'replace'
46
- },
47
- ],
48
-
49
- Manifests: {},
50
- };
51
-
52
- class viewRecordSetReadRecordReadExtra extends libPictView
53
- {
54
- constructor(pFable, pOptions, pServiceHash)
55
- {
56
- let tmpOptions = Object.assign({}, _DEFAULT_CONFIGURATION_Read_RecordReadExtra, pOptions);
57
- super(pFable, tmpOptions, pServiceHash);
58
- }
59
- }
60
-
61
- module.exports = viewRecordSetReadRecordReadExtra;
62
-
63
- module.exports.default_configuration = _DEFAULT_CONFIGURATION_Read_RecordReadExtra;
64
-
@@ -1,64 +0,0 @@
1
- const libPictView = require('pict-view');
2
-
3
- /** @type {Record<string, any>} */
4
- const _DEFAULT_CONFIGURATION_Read_TabBarRead =
5
- {
6
- ViewIdentifier: 'PRSP-Read-TabBarRead',
7
-
8
- DefaultRenderable: 'PRSP_Renderable_TabBarRead',
9
- DefaultDestinationAddress: '#PRSP_TabBarRead_Container',
10
- DefaultTemplateRecordAddress: false,
11
-
12
- // If this is set to true, when the App initializes this will.
13
- // While the App initializes, initialize will be called.
14
- AutoInitialize: false,
15
- AutoInitializeOrdinal: 0,
16
-
17
- // If this is set to true, when the App autorenders (on load) this will.
18
- // After the App initializes, render will be called.
19
- AutoRender: false,
20
- AutoRenderOrdinal: 0,
21
-
22
- AutoSolveWithApp: false,
23
- AutoSolveOrdinal: 0,
24
-
25
- CSS: false,
26
- CSSPriority: 500,
27
-
28
- Templates:
29
- [
30
- {
31
- Hash: 'PRSP-Read-TabBarRead-Template',
32
- Template: /*html*/`
33
- <!-- DefaultPackage pict view template: [PRSP-Read-TabBarRead-Template] -->
34
- <!-- DefaultPackage end view template: [PRSP-Read-TabBarRead-Template] -->
35
- `
36
- },
37
- ],
38
-
39
- Renderables:
40
- [
41
- {
42
- RenderableHash: 'PRSP_Renderable_TabBarRead',
43
- TemplateHash: 'PRSP-Read-TabBarRead-Template',
44
- DestinationAddress: '#PRSP_TabBarRead_Container',
45
- RenderMethod: 'replace'
46
- },
47
- ],
48
-
49
- Manifests: {},
50
- };
51
-
52
- class viewRecordSetReadTabBarRead extends libPictView
53
- {
54
- constructor(pFable, pOptions, pServiceHash)
55
- {
56
- let tmpOptions = Object.assign({}, _DEFAULT_CONFIGURATION_Read_TabBarRead, pOptions);
57
- super(pFable, tmpOptions, pServiceHash);
58
- }
59
- }
60
-
61
- module.exports = viewRecordSetReadTabBarRead;
62
-
63
- module.exports.default_configuration = _DEFAULT_CONFIGURATION_Read_TabBarRead;
64
-