pict-section-recordset 1.0.5 → 1.0.6

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 (38) hide show
  1. package/example_applications/simple_entity/Simple-RecordSet-Application.js +1 -0
  2. package/package.json +1 -1
  3. package/source/views/RecordSet-Filter.js +58 -57
  4. package/source/views/dashboard/RecordSet-Dashboard-HeaderDashboard.js +50 -50
  5. package/source/views/dashboard/RecordSet-Dashboard-RecordSetDashboard.js +51 -51
  6. package/source/views/dashboard/RecordSet-Dashboard-TabBarDashboard.js +50 -50
  7. package/source/views/dashboard/RecordSet-Dashboard.js +50 -50
  8. package/source/views/edit/RecordSet-Edit-HeaderEdit.js +51 -51
  9. package/source/views/edit/RecordSet-Edit-RecordEdit.js +51 -51
  10. package/source/views/edit/RecordSet-Edit-RecordEditControls.js +51 -51
  11. package/source/views/edit/RecordSet-Edit-RecordEditExtra.js +51 -51
  12. package/source/views/edit/RecordSet-Edit-TabBarEdit.js +51 -51
  13. package/source/views/edit/RecordSet-Edit.js +51 -51
  14. package/source/views/list/RecordSet-List-HeaderList.js +51 -51
  15. package/source/views/list/RecordSet-List-PaginationTop.js +2 -2
  16. package/source/views/list/RecordSet-List-RecordList.js +57 -57
  17. package/source/views/list/RecordSet-List-Title.js +47 -47
  18. package/source/views/list/RecordSet-List.js +7 -3
  19. package/source/views/read/RecordSet-Read-HeaderRead.js +51 -51
  20. package/source/views/read/RecordSet-Read-RecordRead.js +42 -42
  21. package/source/views/read/RecordSet-Read-RecordReadExtra.js +51 -51
  22. package/source/views/read/RecordSet-Read-TabBarRead.js +51 -51
  23. package/types/views/RecordSet-Filter.d.ts.map +1 -1
  24. package/types/views/dashboard/RecordSet-Dashboard-HeaderDashboard.d.ts.map +1 -1
  25. package/types/views/dashboard/RecordSet-Dashboard-RecordSetDashboard.d.ts.map +1 -1
  26. package/types/views/dashboard/RecordSet-Dashboard-TabBarDashboard.d.ts.map +1 -1
  27. package/types/views/edit/RecordSet-Edit-HeaderEdit.d.ts.map +1 -1
  28. package/types/views/edit/RecordSet-Edit-RecordEdit.d.ts.map +1 -1
  29. package/types/views/edit/RecordSet-Edit-RecordEditControls.d.ts.map +1 -1
  30. package/types/views/edit/RecordSet-Edit-RecordEditExtra.d.ts.map +1 -1
  31. package/types/views/edit/RecordSet-Edit-TabBarEdit.d.ts.map +1 -1
  32. package/types/views/list/RecordSet-List-HeaderList.d.ts.map +1 -1
  33. package/types/views/list/RecordSet-List-RecordList.d.ts.map +1 -1
  34. package/types/views/list/RecordSet-List-Title.d.ts.map +1 -1
  35. package/types/views/list/RecordSet-List.d.ts.map +1 -1
  36. package/types/views/read/RecordSet-Read-HeaderRead.d.ts.map +1 -1
  37. package/types/views/read/RecordSet-Read-RecordReadExtra.d.ts.map +1 -1
  38. package/types/views/read/RecordSet-Read-TabBarRead.d.ts.map +1 -1
@@ -1,60 +1,60 @@
1
1
  const libPictView = require('pict-view');
2
2
 
3
- const _DEFAULT_CONFIGURATION_Edit_HeaderEdit = (
4
- {
5
- ViewIdentifier: 'PRSP-Edit-HeaderEdit',
6
-
7
- DefaultRenderable: 'PRSP_Renderable_HeaderEdit',
8
- DefaultDestinationAddress: '#PRSP_HeaderEdit_Container',
9
- DefaultTemplateRecordAddress: false,
10
-
11
- // If this is set to true, when the App initializes this will.
12
- // While the App initializes, initialize will be called.
13
- AutoInitialize: false,
14
- AutoInitializeOrdinal: 0,
15
-
16
- // If this is set to true, when the App autorenders (on load) this will.
17
- // After the App initializes, render will be called.
18
- AutoRender: false,
19
- AutoRenderOrdinal: 0,
20
-
21
- AutoSolveWithApp: false,
22
- AutoSolveOrdinal: 0,
23
-
24
- CSS: false,
25
- CSSPriority: 500,
26
-
27
- Templates:
28
- [
29
- {
30
- Hash: 'PRSP-Edit-HeaderEdit-Template',
31
- Template: /*html*/`
3
+ const _DEFAULT_CONFIGURATION_Edit_HeaderEdit =
4
+ {
5
+ ViewIdentifier: 'PRSP-Edit-HeaderEdit',
6
+
7
+ DefaultRenderable: 'PRSP_Renderable_HeaderEdit',
8
+ DefaultDestinationAddress: '#PRSP_HeaderEdit_Container',
9
+ DefaultTemplateRecordAddress: false,
10
+
11
+ // If this is set to true, when the App initializes this will.
12
+ // While the App initializes, initialize will be called.
13
+ AutoInitialize: false,
14
+ AutoInitializeOrdinal: 0,
15
+
16
+ // If this is set to true, when the App autorenders (on load) this will.
17
+ // After the App initializes, render will be called.
18
+ AutoRender: false,
19
+ AutoRenderOrdinal: 0,
20
+
21
+ AutoSolveWithApp: false,
22
+ AutoSolveOrdinal: 0,
23
+
24
+ CSS: false,
25
+ CSSPriority: 500,
26
+
27
+ Templates:
28
+ [
29
+ {
30
+ Hash: 'PRSP-Edit-HeaderEdit-Template',
31
+ Template: /*html*/`
32
32
  <!-- DefaultPackage pict view template: [PRSP-Edit-HeaderEdit-Template] -->
33
- <!-- DefaultPackage end view template: [PRSP-Edit-HeaderEdit-Template] -->
34
- `
35
- }
36
- ],
37
-
38
- Renderables:
39
- [
40
- {
41
- RenderableHash: 'PRSP_Renderable_HeaderEdit',
42
- TemplateHash: 'PRSP-Edit-HeaderEdit-Template',
43
- DestinationAddress: '#PRSP_HeaderEdit_Container',
44
- RenderMethod: 'replace'
45
- }
46
- ],
47
-
48
- Manifests: {}
49
- });
33
+ <!-- DefaultPackage end view template: [PRSP-Edit-HeaderEdit-Template] -->
34
+ `
35
+ }
36
+ ],
37
+
38
+ Renderables:
39
+ [
40
+ {
41
+ RenderableHash: 'PRSP_Renderable_HeaderEdit',
42
+ TemplateHash: 'PRSP-Edit-HeaderEdit-Template',
43
+ DestinationAddress: '#PRSP_HeaderEdit_Container',
44
+ RenderMethod: 'replace'
45
+ }
46
+ ],
47
+
48
+ Manifests: {},
49
+ };
50
50
 
51
51
  class viewRecordSetEditHeaderEdit extends libPictView
52
52
  {
53
- constructor(pFable, pOptions, pServiceHash)
54
- {
55
- let tmpOptions = Object.assign({}, _DEFAULT_CONFIGURATION_Edit_HeaderEdit, pOptions);
56
- super(pFable, tmpOptions, pServiceHash);
57
- }
53
+ constructor(pFable, pOptions, pServiceHash)
54
+ {
55
+ let tmpOptions = Object.assign({}, _DEFAULT_CONFIGURATION_Edit_HeaderEdit, pOptions);
56
+ super(pFable, tmpOptions, pServiceHash);
57
+ }
58
58
  }
59
59
 
60
60
  module.exports = viewRecordSetEditHeaderEdit;
@@ -1,60 +1,60 @@
1
1
  const libPictView = require('pict-view');
2
2
 
3
- const _DEFAULT_CONFIGURATION_Edit_RecordEdit = (
4
- {
5
- ViewIdentifier: 'PRSP-Edit-RecordEdit',
6
-
7
- DefaultRenderable: 'PRSP_Renderable_RecordEdit',
8
- DefaultDestinationAddress: '#PRSP_RecordEdit_Container',
9
- DefaultTemplateRecordAddress: false,
10
-
11
- // If this is set to true, when the App initializes this will.
12
- // While the App initializes, initialize will be called.
13
- AutoInitialize: false,
14
- AutoInitializeOrdinal: 0,
15
-
16
- // If this is set to true, when the App autorenders (on load) this will.
17
- // After the App initializes, render will be called.
18
- AutoRender: false,
19
- AutoRenderOrdinal: 0,
20
-
21
- AutoSolveWithApp: false,
22
- AutoSolveOrdinal: 0,
23
-
24
- CSS: false,
25
- CSSPriority: 500,
26
-
27
- Templates:
28
- [
29
- {
30
- Hash: 'PRSP-Edit-RecordEdit-Template',
31
- Template: /*html*/`
3
+ const _DEFAULT_CONFIGURATION_Edit_RecordEdit =
4
+ {
5
+ ViewIdentifier: 'PRSP-Edit-RecordEdit',
6
+
7
+ DefaultRenderable: 'PRSP_Renderable_RecordEdit',
8
+ DefaultDestinationAddress: '#PRSP_RecordEdit_Container',
9
+ DefaultTemplateRecordAddress: false,
10
+
11
+ // If this is set to true, when the App initializes this will.
12
+ // While the App initializes, initialize will be called.
13
+ AutoInitialize: false,
14
+ AutoInitializeOrdinal: 0,
15
+
16
+ // If this is set to true, when the App autorenders (on load) this will.
17
+ // After the App initializes, render will be called.
18
+ AutoRender: false,
19
+ AutoRenderOrdinal: 0,
20
+
21
+ AutoSolveWithApp: false,
22
+ AutoSolveOrdinal: 0,
23
+
24
+ CSS: false,
25
+ CSSPriority: 500,
26
+
27
+ Templates:
28
+ [
29
+ {
30
+ Hash: 'PRSP-Edit-RecordEdit-Template',
31
+ Template: /*html*/`
32
32
  <!-- DefaultPackage pict view template: [PRSP-Edit-RecordEdit-Template] -->
33
- <!-- DefaultPackage end view template: [PRSP-Edit-RecordEdit-Template] -->
34
- `
35
- }
36
- ],
37
-
38
- Renderables:
39
- [
40
- {
41
- RenderableHash: 'PRSP_Renderable_RecordEdit',
42
- TemplateHash: 'PRSP-Edit-RecordEdit-Template',
43
- DestinationAddress: '#PRSP_RecordEdit_Container',
44
- RenderMethod: 'replace'
45
- }
46
- ],
47
-
48
- Manifests: {}
49
- });
33
+ <!-- DefaultPackage end view template: [PRSP-Edit-RecordEdit-Template] -->
34
+ `
35
+ }
36
+ ],
37
+
38
+ Renderables:
39
+ [
40
+ {
41
+ RenderableHash: 'PRSP_Renderable_RecordEdit',
42
+ TemplateHash: 'PRSP-Edit-RecordEdit-Template',
43
+ DestinationAddress: '#PRSP_RecordEdit_Container',
44
+ RenderMethod: 'replace'
45
+ }
46
+ ],
47
+
48
+ Manifests: {}
49
+ };
50
50
 
51
51
  class viewRecordSetEditRecordEdit extends libPictView
52
52
  {
53
- constructor(pFable, pOptions, pServiceHash)
54
- {
55
- let tmpOptions = Object.assign({}, _DEFAULT_CONFIGURATION_Edit_RecordEdit, pOptions);
56
- super(pFable, tmpOptions, pServiceHash);
57
- }
53
+ constructor(pFable, pOptions, pServiceHash)
54
+ {
55
+ let tmpOptions = Object.assign({}, _DEFAULT_CONFIGURATION_Edit_RecordEdit, pOptions);
56
+ super(pFable, tmpOptions, pServiceHash);
57
+ }
58
58
  }
59
59
 
60
60
  module.exports = viewRecordSetEditRecordEdit;
@@ -1,60 +1,60 @@
1
1
  const libPictView = require('pict-view');
2
2
 
3
- const _DEFAULT_CONFIGURATION_Edit_RecordEditControls = (
4
- {
5
- ViewIdentifier: 'PRSP-Edit-RecordEditControls',
6
-
7
- DefaultRenderable: 'PRSP_Renderable_RecordEditControls',
8
- DefaultDestinationAddress: '#PRSP_RecordEditControls_Container',
9
- DefaultTemplateRecordAddress: false,
10
-
11
- // If this is set to true, when the App initializes this will.
12
- // While the App initializes, initialize will be called.
13
- AutoInitialize: false,
14
- AutoInitializeOrdinal: 0,
15
-
16
- // If this is set to true, when the App autorenders (on load) this will.
17
- // After the App initializes, render will be called.
18
- AutoRender: false,
19
- AutoRenderOrdinal: 0,
20
-
21
- AutoSolveWithApp: false,
22
- AutoSolveOrdinal: 0,
23
-
24
- CSS: false,
25
- CSSPriority: 500,
26
-
27
- Templates:
28
- [
29
- {
30
- Hash: 'PRSP-Edit-RecordEditControls-Template',
31
- Template: /*html*/`
3
+ const _DEFAULT_CONFIGURATION_Edit_RecordEditControls =
4
+ {
5
+ ViewIdentifier: 'PRSP-Edit-RecordEditControls',
6
+
7
+ DefaultRenderable: 'PRSP_Renderable_RecordEditControls',
8
+ DefaultDestinationAddress: '#PRSP_RecordEditControls_Container',
9
+ DefaultTemplateRecordAddress: false,
10
+
11
+ // If this is set to true, when the App initializes this will.
12
+ // While the App initializes, initialize will be called.
13
+ AutoInitialize: false,
14
+ AutoInitializeOrdinal: 0,
15
+
16
+ // If this is set to true, when the App autorenders (on load) this will.
17
+ // After the App initializes, render will be called.
18
+ AutoRender: false,
19
+ AutoRenderOrdinal: 0,
20
+
21
+ AutoSolveWithApp: false,
22
+ AutoSolveOrdinal: 0,
23
+
24
+ CSS: false,
25
+ CSSPriority: 500,
26
+
27
+ Templates:
28
+ [
29
+ {
30
+ Hash: 'PRSP-Edit-RecordEditControls-Template',
31
+ Template: /*html*/`
32
32
  <!-- DefaultPackage pict view template: [PRSP-Edit-RecordEditControls-Template] -->
33
- <!-- DefaultPackage end view template: [PRSP-Edit-RecordEditControls-Template] -->
34
- `
35
- }
36
- ],
37
-
38
- Renderables:
39
- [
40
- {
41
- RenderableHash: 'PRSP_Renderable_RecordEditControls',
42
- TemplateHash: 'PRSP-Edit-RecordEditControls-Template',
43
- DestinationAddress: '#PRSP_RecordEditControls_Container',
44
- RenderMethod: 'replace'
45
- }
46
- ],
47
-
48
- Manifests: {}
49
- });
33
+ <!-- DefaultPackage end view template: [PRSP-Edit-RecordEditControls-Template] -->
34
+ `
35
+ }
36
+ ],
37
+
38
+ Renderables:
39
+ [
40
+ {
41
+ RenderableHash: 'PRSP_Renderable_RecordEditControls',
42
+ TemplateHash: 'PRSP-Edit-RecordEditControls-Template',
43
+ DestinationAddress: '#PRSP_RecordEditControls_Container',
44
+ RenderMethod: 'replace'
45
+ }
46
+ ],
47
+
48
+ Manifests: {}
49
+ };
50
50
 
51
51
  class viewRecordSetEditRecordEditControls extends libPictView
52
52
  {
53
- constructor(pFable, pOptions, pServiceHash)
54
- {
55
- let tmpOptions = Object.assign({}, _DEFAULT_CONFIGURATION_Edit_RecordEditControls, pOptions);
56
- super(pFable, tmpOptions, pServiceHash);
57
- }
53
+ constructor(pFable, pOptions, pServiceHash)
54
+ {
55
+ let tmpOptions = Object.assign({}, _DEFAULT_CONFIGURATION_Edit_RecordEditControls, pOptions);
56
+ super(pFable, tmpOptions, pServiceHash);
57
+ }
58
58
  }
59
59
 
60
60
  module.exports = viewRecordSetEditRecordEditControls;
@@ -1,60 +1,60 @@
1
1
  const libPictView = require('pict-view');
2
2
 
3
- const _DEFAULT_CONFIGURATION_Edit_RecordEditExtra = (
4
- {
5
- ViewIdentifier: 'PRSP-Edit-RecordEditExtra',
6
-
7
- DefaultRenderable: 'PRSP_Renderable_RecordEditExtra',
8
- DefaultDestinationAddress: '#PRSP_RecordEditExtra_Container',
9
- DefaultTemplateRecordAddress: false,
10
-
11
- // If this is set to true, when the App initializes this will.
12
- // While the App initializes, initialize will be called.
13
- AutoInitialize: false,
14
- AutoInitializeOrdinal: 0,
15
-
16
- // If this is set to true, when the App autorenders (on load) this will.
17
- // After the App initializes, render will be called.
18
- AutoRender: false,
19
- AutoRenderOrdinal: 0,
20
-
21
- AutoSolveWithApp: false,
22
- AutoSolveOrdinal: 0,
23
-
24
- CSS: false,
25
- CSSPriority: 500,
26
-
27
- Templates:
28
- [
29
- {
30
- Hash: 'PRSP-Edit-RecordEditExtra-Template',
31
- Template: /*html*/`
3
+ const _DEFAULT_CONFIGURATION_Edit_RecordEditExtra =
4
+ {
5
+ ViewIdentifier: 'PRSP-Edit-RecordEditExtra',
6
+
7
+ DefaultRenderable: 'PRSP_Renderable_RecordEditExtra',
8
+ DefaultDestinationAddress: '#PRSP_RecordEditExtra_Container',
9
+ DefaultTemplateRecordAddress: false,
10
+
11
+ // If this is set to true, when the App initializes this will.
12
+ // While the App initializes, initialize will be called.
13
+ AutoInitialize: false,
14
+ AutoInitializeOrdinal: 0,
15
+
16
+ // If this is set to true, when the App autorenders (on load) this will.
17
+ // After the App initializes, render will be called.
18
+ AutoRender: false,
19
+ AutoRenderOrdinal: 0,
20
+
21
+ AutoSolveWithApp: false,
22
+ AutoSolveOrdinal: 0,
23
+
24
+ CSS: false,
25
+ CSSPriority: 500,
26
+
27
+ Templates:
28
+ [
29
+ {
30
+ Hash: 'PRSP-Edit-RecordEditExtra-Template',
31
+ Template: /*html*/`
32
32
  <!-- DefaultPackage pict view template: [PRSP-Edit-RecordEditExtra-Template] -->
33
- <!-- DefaultPackage end view template: [PRSP-Edit-RecordEditExtra-Template] -->
34
- `
35
- }
36
- ],
37
-
38
- Renderables:
39
- [
40
- {
41
- RenderableHash: 'PRSP_Renderable_RecordEditExtra',
42
- TemplateHash: 'PRSP-Edit-RecordEditExtra-Template',
43
- DestinationAddress: '#PRSP_RecordEditExtra_Container',
44
- RenderMethod: 'replace'
45
- }
46
- ],
47
-
48
- Manifests: {}
49
- });
33
+ <!-- DefaultPackage end view template: [PRSP-Edit-RecordEditExtra-Template] -->
34
+ `
35
+ }
36
+ ],
37
+
38
+ Renderables:
39
+ [
40
+ {
41
+ RenderableHash: 'PRSP_Renderable_RecordEditExtra',
42
+ TemplateHash: 'PRSP-Edit-RecordEditExtra-Template',
43
+ DestinationAddress: '#PRSP_RecordEditExtra_Container',
44
+ RenderMethod: 'replace'
45
+ }
46
+ ],
47
+
48
+ Manifests: {},
49
+ };
50
50
 
51
51
  class viewRecordSetEditRecordEditExtra extends libPictView
52
52
  {
53
- constructor(pFable, pOptions, pServiceHash)
54
- {
55
- let tmpOptions = Object.assign({}, _DEFAULT_CONFIGURATION_Edit_RecordEditExtra, pOptions);
56
- super(pFable, tmpOptions, pServiceHash);
57
- }
53
+ constructor(pFable, pOptions, pServiceHash)
54
+ {
55
+ let tmpOptions = Object.assign({}, _DEFAULT_CONFIGURATION_Edit_RecordEditExtra, pOptions);
56
+ super(pFable, tmpOptions, pServiceHash);
57
+ }
58
58
  }
59
59
 
60
60
  module.exports = viewRecordSetEditRecordEditExtra;
@@ -1,60 +1,60 @@
1
1
  const libPictView = require('pict-view');
2
2
 
3
- const _DEFAULT_CONFIGURATION_Edit_TabBarEdit = (
4
- {
5
- ViewIdentifier: 'PRSP-Edit-TabBarEdit',
6
-
7
- DefaultRenderable: 'PRSP_Renderable_TabBarEdit',
8
- DefaultDestinationAddress: '#PRSP_TabBarEdit_Container',
9
- DefaultTemplateRecordAddress: false,
10
-
11
- // If this is set to true, when the App initializes this will.
12
- // While the App initializes, initialize will be called.
13
- AutoInitialize: false,
14
- AutoInitializeOrdinal: 0,
15
-
16
- // If this is set to true, when the App autorenders (on load) this will.
17
- // After the App initializes, render will be called.
18
- AutoRender: false,
19
- AutoRenderOrdinal: 0,
20
-
21
- AutoSolveWithApp: false,
22
- AutoSolveOrdinal: 0,
23
-
24
- CSS: false,
25
- CSSPriority: 500,
26
-
27
- Templates:
28
- [
29
- {
30
- Hash: 'PRSP-Edit-TabBarEdit-Template',
31
- Template: /*html*/`
3
+ const _DEFAULT_CONFIGURATION_Edit_TabBarEdit =
4
+ {
5
+ ViewIdentifier: 'PRSP-Edit-TabBarEdit',
6
+
7
+ DefaultRenderable: 'PRSP_Renderable_TabBarEdit',
8
+ DefaultDestinationAddress: '#PRSP_TabBarEdit_Container',
9
+ DefaultTemplateRecordAddress: false,
10
+
11
+ // If this is set to true, when the App initializes this will.
12
+ // While the App initializes, initialize will be called.
13
+ AutoInitialize: false,
14
+ AutoInitializeOrdinal: 0,
15
+
16
+ // If this is set to true, when the App autorenders (on load) this will.
17
+ // After the App initializes, render will be called.
18
+ AutoRender: false,
19
+ AutoRenderOrdinal: 0,
20
+
21
+ AutoSolveWithApp: false,
22
+ AutoSolveOrdinal: 0,
23
+
24
+ CSS: false,
25
+ CSSPriority: 500,
26
+
27
+ Templates:
28
+ [
29
+ {
30
+ Hash: 'PRSP-Edit-TabBarEdit-Template',
31
+ Template: /*html*/`
32
32
  <!-- DefaultPackage pict view template: [PRSP-Edit-TabBarEdit-Template] -->
33
- <!-- DefaultPackage end view template: [PRSP-Edit-TabBarEdit-Template] -->
34
- `
35
- }
36
- ],
37
-
38
- Renderables:
39
- [
40
- {
41
- RenderableHash: 'PRSP_Renderable_TabBarEdit',
42
- TemplateHash: 'PRSP-Edit-TabBarEdit-Template',
43
- DestinationAddress: '#PRSP_TabBarEdit_Container',
44
- RenderMethod: 'replace'
45
- }
46
- ],
47
-
48
- Manifests: {}
49
- });
33
+ <!-- DefaultPackage end view template: [PRSP-Edit-TabBarEdit-Template] -->
34
+ `
35
+ },
36
+ ],
37
+
38
+ Renderables:
39
+ [
40
+ {
41
+ RenderableHash: 'PRSP_Renderable_TabBarEdit',
42
+ TemplateHash: 'PRSP-Edit-TabBarEdit-Template',
43
+ DestinationAddress: '#PRSP_TabBarEdit_Container',
44
+ RenderMethod: 'replace'
45
+ }
46
+ ],
47
+
48
+ Manifests: {},
49
+ };
50
50
 
51
51
  class viewRecordSetEditTabBarEdit extends libPictView
52
52
  {
53
- constructor(pFable, pOptions, pServiceHash)
54
- {
55
- let tmpOptions = Object.assign({}, _DEFAULT_CONFIGURATION_Edit_TabBarEdit, pOptions);
56
- super(pFable, tmpOptions, pServiceHash);
57
- }
53
+ constructor(pFable, pOptions, pServiceHash)
54
+ {
55
+ let tmpOptions = Object.assign({}, _DEFAULT_CONFIGURATION_Edit_TabBarEdit, pOptions);
56
+ super(pFable, tmpOptions, pServiceHash);
57
+ }
58
58
  }
59
59
 
60
60
  module.exports = viewRecordSetEditTabBarEdit;