pict-section-form 1.0.22 → 1.0.24
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/complex_table/Complex-Tabular-Application.js +1 -1
- package/example_applications/complex_table/Complex-Tabular-CustomDataProvider.js +2 -2
- package/example_applications/manyfest_editor/html/index.html +3 -3
- package/example_applications/manyfest_editor/providers/Manyfest-Router.js +8 -1
- package/example_applications/manyfest_editor/source/Manyfest-Editor.js +1 -1
- package/example_applications/manyfest_editor/views/Manyfest-Code-View.js +1 -1
- package/example_applications/manyfest_editor/views/Manyfest-LoadList-View.js +2 -2
- package/example_applications/postcard_example/Pict-Application-Postcard.js +3 -3
- package/example_applications/postcard_example/providers/PictProvider-BestPostcardTheme.js +1 -1
- package/example_applications/postcard_example/views/PictView-Postcard-Navigation.json +1 -1
- package/example_applications/simple_form/Simple-Form_Default_Manifest.json +1 -1
- package/package.json +4 -4
- package/source/providers/Pict-Provider-DynamicSolver.js +3 -6
- package/source/providers/Pict-Provider-DynamicTemplates-DefaultFormTemplates-ReadOnly.js +4 -4
- package/source/providers/Pict-Provider-DynamicTemplates-DefaultFormTemplates.js +8 -8
- package/source/views/Pict-View-DynamicForm-DefaultConfiguration.json +3 -3
- package/source/views/Pict-View-DynamicForm.js +21 -26
- package/source/views/Pict-View-Form-Metacontroller.js +1 -2
- package/types/Pict-Section-Form.d.ts +1 -0
- package/types/providers/Pict-Provider-DynamicSolver.d.ts.map +1 -1
- package/types/providers/Pict-Provider-Informary.d.ts.map +1 -1
- package/types/providers/Pict-Provider-InputExtension.d.ts +23 -0
- package/types/providers/Pict-Provider-InputExtension.d.ts.map +1 -1
- package/types/providers/inputs/Pict-Provider-Input-DateTime.d.ts +3 -3
- package/types/providers/inputs/Pict-Provider-Input-DateTime.d.ts.map +1 -1
- package/types/services/ManifestFactory.d.ts +1 -1
- package/types/services/ManifestFactory.d.ts.map +1 -1
- package/types/views/Pict-View-DynamicForm.d.ts +2 -0
- package/types/views/Pict-View-DynamicForm.d.ts.map +1 -1
- package/types/views/Pict-View-Form-Metacontroller.d.ts.map +1 -1
|
@@ -45,7 +45,7 @@ module.exports.default_configuration.pict_configuration = {
|
|
|
45
45
|
{
|
|
46
46
|
//onclick="{~D:Record.Macro.DataRequestFunction~}"
|
|
47
47
|
"HashPostfix": "-Template-Wrap-Prefix",
|
|
48
|
-
"Template": "<h1>Rectangular Area Solver Micro-app</h1><div><a href=\"#\" onclick=\"
|
|
48
|
+
"Template": "<h1>Rectangular Area Solver Micro-app</h1><div><a href=\"#\" onclick=\"{~Pict~}.PictApplication.solve()\">[ solve ]</a></div><hr />"
|
|
49
49
|
}
|
|
50
50
|
],
|
|
51
51
|
|
|
@@ -11,14 +11,14 @@ class CustomInputHandler extends libPictSectionInputExtension
|
|
|
11
11
|
{
|
|
12
12
|
this.log.trace(`CustomInputHandler.onInputInitializeTabular() for view [${pView.Hash}] called`);
|
|
13
13
|
//this.log.trace(`The input object is: ${JSON.stringify(pInput)}`);
|
|
14
|
-
return super.onInputInitialize(pView, pGroup, pInput, pHTMLSelector);
|
|
14
|
+
return super.onInputInitialize(pView, pGroup, pInput, pValue, pHTMLSelector);
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
onInputInitializeTabular(pView, pGroup, pInput, pValue, pHTMLSelector)
|
|
18
18
|
{
|
|
19
19
|
this.log.trace(`CustomInputHandler.onInputInitializeTabular() for view [${pView.Hash}] called`);
|
|
20
20
|
//this.log.trace(`The input object is: ${JSON.stringify(pInput)}`);
|
|
21
|
-
return super.onInputInitializeTabular(pView, pGroup, pInput, pHTMLSelector);
|
|
21
|
+
return super.onInputInitializeTabular(pView, pGroup, pInput, pValue, pHTMLSelector);
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
<div id="navbarBasicExample" class="navbar-menu">
|
|
48
48
|
<div class="navbar-start">
|
|
49
49
|
<a class="navbar-item"> Overview </a>
|
|
50
|
-
<a class="navbar-item" href="
|
|
51
|
-
<a class="navbar-item"> Descriptors </a>
|
|
50
|
+
<a class="navbar-item" href="#/Manyfest/Code"> Code </a>
|
|
51
|
+
<a class="navbar-item" href="#/Manyfest/Editor"> Descriptors </a>
|
|
52
52
|
<a class="navbar-item"> Sections </a>
|
|
53
53
|
<a class="navbar-item"> Reference Manifests </a>
|
|
54
54
|
</div>
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
</div>
|
|
72
72
|
|
|
73
73
|
<div class="buttons">
|
|
74
|
-
<a class="button is-primary" href="
|
|
74
|
+
<a class="button is-primary" href="#/Manyfest/Save"> <strong>Save</strong> </a>
|
|
75
75
|
</div>
|
|
76
76
|
</div>
|
|
77
77
|
</div>
|
|
@@ -31,9 +31,16 @@ class ManyfestRouter extends libPictProvider
|
|
|
31
31
|
this.router.on('/Manyfest/Code',
|
|
32
32
|
(pData) =>
|
|
33
33
|
{
|
|
34
|
-
|
|
34
|
+
this.pict.views.ManyfestCodeView.render();
|
|
35
35
|
});
|
|
36
36
|
|
|
37
|
+
this.router.on('/Manyfest/Save',
|
|
38
|
+
(pData) =>
|
|
39
|
+
{
|
|
40
|
+
this.pict.providers.DataProvider.saveManyfest()
|
|
41
|
+
});
|
|
42
|
+
)
|
|
43
|
+
|
|
37
44
|
return super.onInitializeAsync(fCallback);
|
|
38
45
|
}
|
|
39
46
|
}
|
|
@@ -16,7 +16,7 @@ const _DEFAULT_VIEW_CONFIGURATION = (
|
|
|
16
16
|
<div class="container">
|
|
17
17
|
<h1 class="title">Manyfest Raw Code</h1>
|
|
18
18
|
<h2 class="subtitle">Your lens into the guts of this machine.</h2>
|
|
19
|
-
<textarea {~D:Record.Macro.InputFullProperties~} id="ManyfestRawCodeEditor" onchange="
|
|
19
|
+
<textarea {~D:Record.Macro.InputFullProperties~} id="ManyfestRawCodeEditor" onchange="{~P~}.views.ManyfestCodeView.marshalFromView()">{~D:Context[0].getManyfestRawCode()~}</textarea>
|
|
20
20
|
</div>
|
|
21
21
|
`
|
|
22
22
|
}
|
|
@@ -21,7 +21,7 @@ const _DEFAULT_VIEW_CONFIGURATION = (
|
|
|
21
21
|
{
|
|
22
22
|
Hash: "Manyfest-LoadList-Entry-Template",
|
|
23
23
|
Template: /*html*/`
|
|
24
|
-
<a class="navbar-item" href="#" onclick="
|
|
24
|
+
<a class="navbar-item" href="#" onclick="{~P~}.providers.DataProvider.loadManyfest('{~D:Record.Scope~}')"> {~D:Record.Scope~} </a>
|
|
25
25
|
`
|
|
26
26
|
},
|
|
27
27
|
{
|
|
@@ -33,7 +33,7 @@ const _DEFAULT_VIEW_CONFIGURATION = (
|
|
|
33
33
|
{
|
|
34
34
|
Hash: "Manyfest-DeleteList-Entry-Template",
|
|
35
35
|
Template: /*html*/`
|
|
36
|
-
<a class="navbar-item" href="#" onclick="
|
|
36
|
+
<a class="navbar-item" href="#" onclick="{~P~}.providers.DataProvider.removeScopeFromManyfestList('{~D:Record.Scope~}')"> {~D:Record.Scope~} </a>
|
|
37
37
|
`
|
|
38
38
|
},
|
|
39
39
|
{
|
|
@@ -35,7 +35,7 @@ class PostcardApplication extends libPictApplication
|
|
|
35
35
|
|
|
36
36
|
changeToDefaultTheme()
|
|
37
37
|
{
|
|
38
|
-
this.pict.views.PictFormMetacontroller.formTemplatePrefix =
|
|
38
|
+
this.pict.views.PictFormMetacontroller.formTemplatePrefix = this.pict.providers.PictFormSectionDefaultTemplateProvider.formsTemplateSetPrefix
|
|
39
39
|
// This generates the container metatemplates after we switch themes.
|
|
40
40
|
this.pict.views.PictFormMetacontroller.generateMetatemplate();
|
|
41
41
|
// This generates the view templates for each dynamic view generated from config.
|
|
@@ -50,7 +50,7 @@ class PostcardApplication extends libPictApplication
|
|
|
50
50
|
|
|
51
51
|
changeToPostcardTheme()
|
|
52
52
|
{
|
|
53
|
-
this.pict.views.PictFormMetacontroller.formTemplatePrefix =
|
|
53
|
+
this.pict.views.PictFormMetacontroller.formTemplatePrefix = this.pict.providers['Postcard-Default-Theme-Provider'].formsTemplateSetPrefix;
|
|
54
54
|
// This generates the container metatemplates after we switch themes.
|
|
55
55
|
this.pict.views.PictFormMetacontroller.generateMetatemplate();
|
|
56
56
|
// This generates the view templates for each dynamic view generated from config.
|
|
@@ -66,7 +66,7 @@ class PostcardApplication extends libPictApplication
|
|
|
66
66
|
onAfterInitializeAsync(fCallback)
|
|
67
67
|
{
|
|
68
68
|
// Default to the Pure theme
|
|
69
|
-
this.pict.views.PictFormMetacontroller.formTemplatePrefix =
|
|
69
|
+
this.pict.views.PictFormMetacontroller.formTemplatePrefix = this.pict.providers['Postcard-Default-Theme-Provider'].formsTemplateSetPrefix;
|
|
70
70
|
|
|
71
71
|
// Set a custom address for all the views to marshal to.
|
|
72
72
|
// This can also be set on specific views (same property)
|
|
@@ -114,7 +114,7 @@ Glug glug CUSTOMIZED glug Oo... -->
|
|
|
114
114
|
<div class="pure-u-1 pure-u-md-1-3">
|
|
115
115
|
<label {~D:Record.Macro.HTMLForID~}><em>{~D:Record.Name~}:</em></label>
|
|
116
116
|
<input type="text" {~D:Record.Macro.HTMLID~} {~D:Record.Macro.InputFullProperties~} class="pure-u-23-24" />
|
|
117
|
-
<a href="#" onclick="
|
|
117
|
+
<a href="#" onclick="{~P~}.views['{~D:Context[0].Hash~}'].inputEvent('{~D:Record.Hash~}', 'BestEventEvarrrr')" class="pure-button">Sign</a>
|
|
118
118
|
</div>
|
|
119
119
|
|
|
120
120
|
`
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"Templates": [
|
|
12
12
|
{
|
|
13
13
|
"Hash": "Postcard-Top-Navigation",
|
|
14
|
-
"Template": "<span class=\"pure-menu-heading\">Postkard</span><ul class=\"pure-menu-list\"><li class=\"pure-menu-item\"><a href=\"#\" onclick=\"
|
|
14
|
+
"Template": "<span class=\"pure-menu-heading\">Postkard</span><ul class=\"pure-menu-list\"><li class=\"pure-menu-item\"><a href=\"#\" onclick=\"{~P~}.views.PostcardMainApplication.render()\" class=\"pure-menu-link\">Send a Kard</a></li><li class=\"pure-menu-item\"><a href=\"#\" onclick=\"{~P~}.views.PostcardAbout.render()\" class=\"pure-menu-link\">About</a></li><li class=\"pure-menu-item\"><a href=\"#\" onclick=\"{~P~}.views.PostcardLegal.render()\" class=\"pure-menu-link\">Legal</a></li><li class=\"pure-menu-item menu-item-divided\"><a href=\"#\" onclick=\"{~P~}.PictApplication.marshalDataFromViewToAppData()\" class=\"pure-menu-link\">Store Data</a></li><li class=\"pure-menu-item\"><a href=\"#\" onclick=\"{~P~}.PictApplication.marshalDataFromAppDataToView()\" class=\"pure-menu-link\">Read Data</a></li><li class=\"pure-menu-item menu-item-divided\"><a href=\"#\" onclick=\"{~P~}.PictApplication.changeToPostcardTheme()\" class=\"pure-menu-link\">Postkard Pure CSS Theme</a></li><li class=\"pure-menu-item\"><a href=\"#\" onclick=\"{~P~}.PictApplication.changeToDefaultTheme()\" class=\"pure-menu-link\">Pict Raw HTML Form Theme</a></li></ul>"
|
|
15
15
|
}
|
|
16
16
|
],
|
|
17
17
|
"Renderables": [
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
[
|
|
19
19
|
{
|
|
20
20
|
"HashPostfix": "-Template-Wrap-Prefix",
|
|
21
|
-
"Template": "<h1>Rectangular Area Solver Micro-app</h1><div><a href=\"#\" onclick=\"
|
|
21
|
+
"Template": "<h1>Rectangular Area Solver Micro-app</h1><div><a href=\"#\" onclick=\"{~P~}.PictApplication.solve()\">[ solve ]</a></div><hr />"
|
|
22
22
|
}
|
|
23
23
|
]
|
|
24
24
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pict-section-form",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.24",
|
|
4
4
|
"description": "Pict dynamic form sections",
|
|
5
5
|
"main": "source/Pict-Section-Form.js",
|
|
6
6
|
"directories": {
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"author": "steven velozo <steven@velozo.com>",
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@eslint/js": "^9.
|
|
30
|
+
"@eslint/js": "^9.7.0",
|
|
31
31
|
"browser-env": "^3.3.0",
|
|
32
|
-
"eslint": "^9.
|
|
32
|
+
"eslint": "^9.7.0",
|
|
33
33
|
"jquery": "^3.7.1",
|
|
34
|
-
"pict": "^1.0.
|
|
34
|
+
"pict": "^1.0.208",
|
|
35
35
|
"pict-application": "^1.0.19",
|
|
36
36
|
"pict-service-commandlineutility": "^1.0.13",
|
|
37
37
|
"quackage": "^1.0.30",
|
|
@@ -37,18 +37,15 @@ class PictDynamicSolver extends libPictProvider
|
|
|
37
37
|
|
|
38
38
|
if (!this.pict.providers.DynamicMetaLists)
|
|
39
39
|
{
|
|
40
|
-
|
|
41
|
-
tmpDynamicMetaLists.initialize();
|
|
40
|
+
this.pict.addProvider('DynamicMetaLists', libDynamicMetaLists.default_configuration, libDynamicMetaLists);
|
|
42
41
|
}
|
|
43
42
|
if (!this.pict.providers['Pict-Input-Select']);
|
|
44
43
|
{
|
|
45
|
-
|
|
46
|
-
tmpInputSelectProvider.initialize();
|
|
44
|
+
this.pict.addProvider('Pict-Input-Select', libInputSelect.default_configuration, libInputSelect);
|
|
47
45
|
}
|
|
48
46
|
if (!this.pict.providers['Pict-Input-DateTime']);
|
|
49
47
|
{
|
|
50
|
-
|
|
51
|
-
tmpInputDateTimeProvider.initialize();
|
|
48
|
+
this.pict.addProvider('Pict-Input-DateTime', libInputDateTime.default_configuration, libInputDateTime);
|
|
52
49
|
}
|
|
53
50
|
}
|
|
54
51
|
|
|
@@ -195,9 +195,9 @@ Glug glug glug Oo... -->
|
|
|
195
195
|
{
|
|
196
196
|
"HashPostfix": "-TabularTemplate-Row-ExtraPostfix",
|
|
197
197
|
"Template": /*HTML*/`<!-- TabularTemplateRow-ExtraPostfix-->
|
|
198
|
-
<td><a href="#" onClick="
|
|
199
|
-
<a href="#" onClick="
|
|
200
|
-
<a href="#" onClick="
|
|
198
|
+
<td><a href="#" onClick="{~P~}.views['{~D:Context[0].Hash~}'].deleteDynamicTableRow({~D:Record.Group~},'{~D:Record.Key~}')">del</a>
|
|
199
|
+
<a href="#" onClick="{~P~}.views['{~D:Context[0].Hash~}'].moveDynamicTableRowUp({~D:Record.Group~},'{~D:Record.Key~}')">up</a>
|
|
200
|
+
<a href="#" onClick="{~P~}.views['{~D:Context[0].Hash~}'].moveDynamicTableRowDown({~D:Record.Group~},'{~D:Record.Key~}')">down</a></td>
|
|
201
201
|
`
|
|
202
202
|
},
|
|
203
203
|
/*
|
|
@@ -285,7 +285,7 @@ Glug glug glug Oo... -->
|
|
|
285
285
|
},
|
|
286
286
|
{
|
|
287
287
|
"HashPostfix": "-TabularTemplate-InformaryAddress-Input",
|
|
288
|
-
"Template": /*HTML*/` data-i-index="{~D:Context[2].Key~}" onchange="
|
|
288
|
+
"Template": /*HTML*/` data-i-index="{~D:Context[2].Key~}" onchange="{~P~}.views['{~D:Context[0].Hash~}'].dataChangedTabular('{~D:Context[2].Group~}', '{~D:Record.PictForm.InputIndex~}', '{~D:Context[2].Key~}')" `
|
|
289
289
|
},
|
|
290
290
|
/*
|
|
291
291
|
* END Tabular Input Templates
|
|
@@ -244,9 +244,9 @@ Glug glug glug Oo... -->
|
|
|
244
244
|
{
|
|
245
245
|
"HashPostfix": "-TabularTemplate-Row-ExtraPostfix",
|
|
246
246
|
"Template": /*HTML*/`<!-- TabularTemplateRow-ExtraPostfix-->
|
|
247
|
-
<td><a href="#" onClick="
|
|
248
|
-
<a href="#" onClick="
|
|
249
|
-
<a href="#" onClick="
|
|
247
|
+
<td><a href="#" onClick="{~P~}.views['{~D:Context[0].Hash~}'].deleteDynamicTableRow({~D:Record.Group~},'{~D:Record.Key~}')">del</a>
|
|
248
|
+
<a href="#" onClick="{~P~}.views['{~D:Context[0].Hash~}'].moveDynamicTableRowUp({~D:Record.Group~},'{~D:Record.Key~}')">up</a>
|
|
249
|
+
<a href="#" onClick="{~P~}.views['{~D:Context[0].Hash~}'].moveDynamicTableRowDown({~D:Record.Group~},'{~D:Record.Key~}')">down</a></td>
|
|
250
250
|
`
|
|
251
251
|
},
|
|
252
252
|
/*
|
|
@@ -334,7 +334,7 @@ Glug glug glug Oo... -->
|
|
|
334
334
|
},
|
|
335
335
|
{
|
|
336
336
|
"HashPostfix": "-TabularTemplate-InformaryAddress-Input",
|
|
337
|
-
"Template": /*HTML*/` data-i-index="{~D:Context[2].Key~}" onchange="
|
|
337
|
+
"Template": /*HTML*/` data-i-index="{~D:Context[2].Key~}" onchange="{~P~}.views['{~D:Context[0].Hash~}'].dataChangedTabular('{~D:Context[2].Group~}', '{~D:Record.PictForm.InputIndex~}', '{~D:Context[2].Key~}')" `
|
|
338
338
|
},
|
|
339
339
|
|
|
340
340
|
{
|
|
@@ -379,14 +379,14 @@ Glug glug glug Oo... -->
|
|
|
379
379
|
{
|
|
380
380
|
"HashPostfix": "-TabularTemplate-End-Input-InputType-Option",
|
|
381
381
|
"Template": /*HTML*/` value="">
|
|
382
|
-
<select id="SELECT-TABULAR-DROPDOWN-{~D:Record.Macro.RawHTMLID~}-{~D:Context[2].Key~}" onchange="
|
|
382
|
+
<select id="SELECT-TABULAR-DROPDOWN-{~D:Record.Macro.RawHTMLID~}-{~D:Context[2].Key~}" onchange="{~P~}.views['{~D:Context[0].Hash~}'].inputDataRequestTabular('{~D:Context[2].Group~}', '{~D:Record.PictForm.InputIndex~}', '{~D:Context[2].Key~}')"></select>
|
|
383
383
|
`
|
|
384
384
|
},
|
|
385
385
|
{
|
|
386
386
|
"HashPostfix": "-TabularTemplate-Begin-Input-InputType-Boolean",
|
|
387
387
|
"Template": /*HTML*/`
|
|
388
388
|
<!-- InputType Boolean {~D:Record.Hash~} {~D:Record.DataType~} -->
|
|
389
|
-
<input type="checkbox"
|
|
389
|
+
<input type="checkbox" {~D:Record.Macro.HTMLName~} {~D:Record.Macro.InformaryTabular~} `
|
|
390
390
|
},
|
|
391
391
|
{
|
|
392
392
|
"HashPostfix": "-TabularTemplate-End-Input-InputType-Boolean",
|
|
@@ -402,14 +402,14 @@ Glug glug glug Oo... -->
|
|
|
402
402
|
{
|
|
403
403
|
"HashPostfix": "-TabularTemplate-End-Input-DataType-DateTime",
|
|
404
404
|
"Template": /*HTML*/` value="">
|
|
405
|
-
<input id="DATETIME-TABULAR-INPUT-{~D:Record.Macro.RawHTMLID~}-{~D:Context[2].Key~}" onchange="
|
|
405
|
+
<input id="DATETIME-TABULAR-INPUT-{~D:Record.Macro.RawHTMLID~}-{~D:Context[2].Key~}" onchange="{~P~}.views['{~D:Context[0].Hash~}'].inputDataRequestTabular('{~D:Context[2].Group~}', '{~D:Record.PictForm.InputIndex~}', '{~D:Context[2].Key~}')" type="datetime-local" value="" />
|
|
406
406
|
`
|
|
407
407
|
},
|
|
408
408
|
{
|
|
409
409
|
"HashPostfix": "-TabularTemplate-Begin-Input-InputType-Hidden",
|
|
410
410
|
"Template": /*HTML*/`
|
|
411
411
|
<!-- InputType Hidden {~D:Record.Hash~} {~D:Record.DataType~} -->
|
|
412
|
-
<input type="hidden" {~D:Record.Macro.InputFullProperties~} {~D:Record.Macro.InputChangeHandler~}
|
|
412
|
+
<input type="hidden" {~D:Record.Macro.InputFullProperties~} {~D:Record.Macro.InputChangeHandler~} {~D:Record.Macro.InformaryTabular~}
|
|
413
413
|
`
|
|
414
414
|
},
|
|
415
415
|
{
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"Group": {
|
|
17
17
|
"HTMLID": " id=\"Group-{~D:Context[0].UUID~}\" ",
|
|
18
18
|
|
|
19
|
-
"TabularCreateRowFunctionCall": "
|
|
19
|
+
"TabularCreateRowFunctionCall": "{~P~}.views['{~D:Context[0].Hash~}'].createDynamicTableRow({~D:Record.GroupIndex~})"
|
|
20
20
|
},
|
|
21
21
|
"Input": {
|
|
22
22
|
"Informary": " data-i-form=\"{~D:Context[0].formID~}\" data-i-datum=\"{~D:Record.PictForm.InformaryDataAddress~}\" ",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"HTMLForID": " for=\"{~D:Context[0].UUID~}-FormInput-{~D:Record.Hash~}\" ",
|
|
34
34
|
|
|
35
35
|
"InputFullProperties": " data-i-form=\"{~D:Context[0].formID~}\" data-i-datum=\"{~D:Record.PictForm.InformaryDataAddress~}\" name=\"{~D:Record.Name~}\" ",
|
|
36
|
-
"InputChangeHandler": " onchange=\"
|
|
36
|
+
"InputChangeHandler": " onchange=\"{~P~}.views['{~D:Context[0].Hash~}'].dataChanged('{~D:Record.Hash~}')\" ",
|
|
37
37
|
|
|
38
|
-
"DataRequestFunction": "
|
|
38
|
+
"DataRequestFunction": " {~P~}.views['{~D:Context[0].Hash~}'].inputDataRequest('{~D:Record.Hash~}'); "
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
|
|
@@ -75,23 +75,19 @@ class PictViewDynamicForm extends libPictViewClass
|
|
|
75
75
|
|
|
76
76
|
if (!this.pict.providers.PictFormSectionDefaultTemplateProvider)
|
|
77
77
|
{
|
|
78
|
-
|
|
79
|
-
tmpDefaultTemplateProvider.initialize();
|
|
78
|
+
this.pict.addProvider('PictFormSectionDefaultTemplateProvider', libFormsTemplateProvider.default_configuration, libFormsTemplateProvider);
|
|
80
79
|
}
|
|
81
80
|
if (!this.pict.providers.PictFormSectionDefaultTemplateProviderReadOnly)
|
|
82
81
|
{
|
|
83
|
-
|
|
84
|
-
tmpDefaultTemplateProviderReadOnly.initialize();
|
|
82
|
+
this.pict.addProvider('PictFormSectionDefaultTemplateProviderReadOnly', libFormsTemplateProviderReadOnly.default_configuration, libFormsTemplateProviderReadOnly);
|
|
85
83
|
}
|
|
86
84
|
if (!this.pict.providers.Informary)
|
|
87
85
|
{
|
|
88
|
-
|
|
89
|
-
tmpInformary.initialize();
|
|
86
|
+
this.pict.addProvider('Informary', libInformary.default_configuration, libInformary);
|
|
90
87
|
}
|
|
91
88
|
if (!this.pict.providers.DynamicSolver)
|
|
92
89
|
{
|
|
93
|
-
|
|
94
|
-
tmpDynamicSolver.initialize();
|
|
90
|
+
this.pict.addProvider('DynamicSolver', libDynamicSolver.default_configuration, libDynamicSolver);
|
|
95
91
|
}
|
|
96
92
|
|
|
97
93
|
// Load any view section-specific templates
|
|
@@ -463,24 +459,6 @@ class PictViewDynamicForm extends libPictViewClass
|
|
|
463
459
|
tmpGroup.Rows = [];
|
|
464
460
|
}
|
|
465
461
|
|
|
466
|
-
if (tmpGroup.supportingManifest && (typeof(tmpGroup.RecordSetAddress) == 'string'))
|
|
467
|
-
{
|
|
468
|
-
let tmpSupportingManifestDescriptorKeys = Object.keys(tmpGroup.supportingManifest.elementDescriptors);
|
|
469
|
-
for (let k = 0; k < tmpSupportingManifestDescriptorKeys.length; k++)
|
|
470
|
-
{
|
|
471
|
-
let tmpInput = tmpGroup.supportingManifest.elementDescriptors[tmpSupportingManifestDescriptorKeys[k]];
|
|
472
|
-
|
|
473
|
-
if (!('PictForm' in tmpInput))
|
|
474
|
-
{
|
|
475
|
-
tmpInput.PictForm = {};
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
tmpInput.PictForm.InformaryDataAddress = tmpSupportingManifestDescriptorKeys[k];
|
|
479
|
-
tmpInput.PictForm.InformaryContainerAddress = tmpGroup.RecordSetAddress;
|
|
480
|
-
tmpInput.RowIdentifierTemplateHash = '{~D:Record.RowID~}';
|
|
481
|
-
}
|
|
482
|
-
}
|
|
483
|
-
|
|
484
462
|
let tmpRowHash = (typeof(tmpDescriptor.PictForm.Row) == 'string') ? tmpDescriptor.PictForm.Row :
|
|
485
463
|
(typeof(tmpDescriptor.PictForm.Row) == 'number') ? `Row_${tmpDescriptor.PictForm.Row.toString()}` :
|
|
486
464
|
'Row_Default';
|
|
@@ -534,6 +512,23 @@ class PictViewDynamicForm extends libPictViewClass
|
|
|
534
512
|
tmpGroup.supportingManifest = this.fable.instantiateServiceProviderWithoutRegistration('Manifest', this.options.Manifests.Section.ReferenceManifests[tmpGroup.RecordManifest]);
|
|
535
513
|
}
|
|
536
514
|
}
|
|
515
|
+
if (tmpGroup.supportingManifest && (typeof(tmpGroup.RecordSetAddress) == 'string'))
|
|
516
|
+
{
|
|
517
|
+
let tmpSupportingManifestDescriptorKeys = Object.keys(tmpGroup.supportingManifest.elementDescriptors);
|
|
518
|
+
for (let k = 0; k < tmpSupportingManifestDescriptorKeys.length; k++)
|
|
519
|
+
{
|
|
520
|
+
let tmpInput = tmpGroup.supportingManifest.elementDescriptors[tmpSupportingManifestDescriptorKeys[k]];
|
|
521
|
+
|
|
522
|
+
if (!('PictForm' in tmpInput))
|
|
523
|
+
{
|
|
524
|
+
tmpInput.PictForm = {};
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
tmpInput.PictForm.InformaryDataAddress = tmpSupportingManifestDescriptorKeys[k];
|
|
528
|
+
tmpInput.PictForm.InformaryContainerAddress = tmpGroup.RecordSetAddress;
|
|
529
|
+
tmpInput.RowIdentifierTemplateHash = '{~D:Record.RowID~}';
|
|
530
|
+
}
|
|
531
|
+
}
|
|
537
532
|
}
|
|
538
533
|
|
|
539
534
|
}
|
|
@@ -25,8 +25,7 @@ class PictFormMetacontroller extends libPictViewClass
|
|
|
25
25
|
}
|
|
26
26
|
if (!this.pict.providers.DynamicSolver)
|
|
27
27
|
{
|
|
28
|
-
|
|
29
|
-
tmpDynamicSolver.initialize();
|
|
28
|
+
this.pict.addProvider('DynamicSolver', libDynamicSolver.default_configuration, libDynamicSolver);
|
|
30
29
|
}
|
|
31
30
|
|
|
32
31
|
this.viewMarshalDestination = 'AppData';
|
|
@@ -36,6 +36,7 @@ declare const _exports: {
|
|
|
36
36
|
PictInputExtensionProvider: typeof import("./providers/Pict-Provider-InputExtension.js");
|
|
37
37
|
PictFormMetacontroller: typeof import("./views/Pict-View-Form-Metacontroller.js");
|
|
38
38
|
PictFormApplication: typeof import("./application/Pict-Application-Form.js");
|
|
39
|
+
ManifestFactory: typeof import("./services/ManifestFactory.js");
|
|
39
40
|
};
|
|
40
41
|
export = _exports;
|
|
41
42
|
//# sourceMappingURL=Pict-Section-Form.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Provider-DynamicSolver.d.ts","sourceRoot":"","sources":["../../source/providers/Pict-Provider-DynamicSolver.js"],"names":[],"mappings":";AAiBA;;GAEG;AACH;IAEC;;;;;;OAMG;IACH,oBAJW,MAAM,YACN,MAAM,gBACN,MAAM,
|
|
1
|
+
{"version":3,"file":"Pict-Provider-DynamicSolver.d.ts","sourceRoot":"","sources":["../../source/providers/Pict-Provider-DynamicSolver.js"],"names":[],"mappings":";AAiBA;;GAEG;AACH;IAEC;;;;;;OAMG;IACH,oBAJW,MAAM,YACN,MAAM,gBACN,MAAM,EAsBhB;IAED;;;;;;;;;OASG;IACH,qBALW,MAAM,GAAC,MAAM,aACb,OAAO,YACP,MAAM,GACJ,MAAM,GAAC,SAAS,CA8B5B;IAED;;;;;;;OAOG;IACH,wDAFW,MAAM,QAyDhB;IAED;;;;;OAKG;IACH,gEAFW,MAAM,QA+BhB;IAED;;;;;OAKG;IACH,sDAFW,MAAM,QAwBhB;IAED;;;;;;;;OAQG;IACH,gCAJW,MAAM,yBAWhB;IAED;;;;;;;;;;;;;;;;;;;;;OAqBG;IACH,yBAFW,QAAM,MAAM,EAAE,QAiFxB;IADA;;;;;MAAuC;CAExC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Provider-Informary.d.ts","sourceRoot":"","sources":["../../source/providers/Pict-Provider-Informary.js"],"names":[],"mappings":";AAaA;;;GAGG;AACH;IAEC;;;;;OAKG;IACH,oBAJW,MAAM,YACN,MAAM,gBACN,MAAM,EAShB;IADA,qBAAwE;IAGzE;;;;;OAKG;IACH,2BAHW,MAAM,GACJ,WAAW,EAAE,CAOzB;IAED;;;;;;;;;;OAUG;IACH,oCANW,MAAM,cACN,MAAM,cACN,MAAM,GAAC,IAAI,UACX,MAAM,GACJ,MAAM,CAalB;IAED;;;;;;;OAOG;IACH,wCALW,MAAM,UACN,MAAM,cACN,MAAM,GACJ,MAAM,CAKlB;IAED;;;;;;;;OAQG;IACH,iCANW,MAAM,aACN,MAAM,aACN,MAAM,UACN,MAAM,gBACN,MAAM,QAqDhB;IAED;;;;;;OAMG;IACH,iCAJW,MAAM,aACN,MAAM,aACN,MAAM,
|
|
1
|
+
{"version":3,"file":"Pict-Provider-Informary.d.ts","sourceRoot":"","sources":["../../source/providers/Pict-Provider-Informary.js"],"names":[],"mappings":";AAaA;;;GAGG;AACH;IAEC;;;;;OAKG;IACH,oBAJW,MAAM,YACN,MAAM,gBACN,MAAM,EAShB;IADA,qBAAwE;IAGzE;;;;;OAKG;IACH,2BAHW,MAAM,GACJ,WAAW,EAAE,CAOzB;IAED;;;;;;;;;;OAUG;IACH,oCANW,MAAM,cACN,MAAM,cACN,MAAM,GAAC,IAAI,UACX,MAAM,GACJ,MAAM,CAalB;IAED;;;;;;;OAOG;IACH,wCALW,MAAM,UACN,MAAM,cACN,MAAM,GACJ,MAAM,CAKlB;IAED;;;;;;;;OAQG;IACH,iCANW,MAAM,aACN,MAAM,aACN,MAAM,UACN,MAAM,gBACN,MAAM,QAqDhB;IAED;;;;;;OAMG;IACH,iCAJW,MAAM,aACN,MAAM,aACN,MAAM,QAmDhB;CACD"}
|
|
@@ -104,6 +104,29 @@ declare class PictInputExtensionProvider {
|
|
|
104
104
|
* @returns {boolean} - Returns true.
|
|
105
105
|
*/
|
|
106
106
|
onDataRequestTabular(pView: any, pInput: any, pValue: string, pHTMLSelector: string, pRowIndex: number): boolean;
|
|
107
|
+
/**
|
|
108
|
+
* Handles events for the Pict-Provider-InputExtension.
|
|
109
|
+
*
|
|
110
|
+
* @param {Object} pView - The view object.
|
|
111
|
+
* @param {Object} pInput - The input object.
|
|
112
|
+
* @param {string} pValue - The value from AppData.
|
|
113
|
+
* @param {string} pHTMLSelector - The HTML selector.
|
|
114
|
+
* @param {string} pEvent - The event hash that is expected to be triggered.
|
|
115
|
+
* @returns {boolean} - Returns true.
|
|
116
|
+
*/
|
|
117
|
+
onEvent(pView: any, pInput: any, pValue: string, pHTMLSelector: string, pEvent: string): boolean;
|
|
118
|
+
/**
|
|
119
|
+
* Handles events for the Pict-Provider-InputExtension.
|
|
120
|
+
*
|
|
121
|
+
* @param {Object} pView - The view object.
|
|
122
|
+
* @param {Object} pInput - The input object.
|
|
123
|
+
* @param {string} pValue - The value from AppData.
|
|
124
|
+
* @param {string} pHTMLSelector - The HTML selector.
|
|
125
|
+
* @param {number} pRowIndex - The row index of the tabular data.
|
|
126
|
+
* @param {string} pEvent - The event hash that is expected to be triggered.
|
|
127
|
+
* @returns {boolean} - Returns true.
|
|
128
|
+
*/
|
|
129
|
+
onEventTabular(pView: any, pInput: any, pValue: string, pHTMLSelector: string, pRowIndex: number, pEvent: string): boolean;
|
|
107
130
|
}
|
|
108
131
|
declare namespace PictInputExtensionProvider {
|
|
109
132
|
export { _DefaultProviderConfiguration as default_configuration };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Provider-InputExtension.d.ts","sourceRoot":"","sources":["../../source/providers/Pict-Provider-InputExtension.js"],"names":[],"mappings":";AAYA;;;;GAIG;AACH;IAEC;;;;;;OAMG;IACH,oBAJW,MAAM,YACN,MAAM,gBACN,MAAM,EAMhB;IAED;;;;;;;;;;;OAWG;IACH,2EAHW,MAAM,iBACN,MAAM,WAKhB;IAED;;;;;;;;;;OAUG;IACH,uEAHW,MAAM,iBACN,MAAM,2BAKhB;IAED;;;;;;;;;OASG;IACH,8CAHW,GAAG,iBACH,MAAM,WAKhB;IAED;;;;;;;;OAQG;IACH,qDAJW,GAAG,iBACH,MAAM,aACN,MAAM,WAKhB;IAED;;;;;;;;;;OAUG;IACH,mDANW,MAAM,uBAEN,GAAG,iBACH,MAAM,GACJ,OAAO,CAKnB;IAED;;;;;;;;;;OAUG;IACH,yEALW,GAAG,iBACH,MAAM,aACN,MAAM,GACJ,OAAO,CAKnB;IAED;;;;;;;;OAQG;IACH,+CAJW,MAAM,iBACN,MAAM,GACJ,OAAO,CAKnB;IAED;;;;;;;;;OASG;IACH,sDALW,MAAM,iBACN,MAAM,aACN,MAAM,GACJ,OAAO,CAKnB;CACD"}
|
|
1
|
+
{"version":3,"file":"Pict-Provider-InputExtension.d.ts","sourceRoot":"","sources":["../../source/providers/Pict-Provider-InputExtension.js"],"names":[],"mappings":";AAYA;;;;GAIG;AACH;IAEC;;;;;;OAMG;IACH,oBAJW,MAAM,YACN,MAAM,gBACN,MAAM,EAMhB;IAED;;;;;;;;;;;OAWG;IACH,2EAHW,MAAM,iBACN,MAAM,WAKhB;IAED;;;;;;;;;;OAUG;IACH,uEAHW,MAAM,iBACN,MAAM,2BAKhB;IAED;;;;;;;;;OASG;IACH,8CAHW,GAAG,iBACH,MAAM,WAKhB;IAED;;;;;;;;OAQG;IACH,qDAJW,GAAG,iBACH,MAAM,aACN,MAAM,WAKhB;IAED;;;;;;;;;;OAUG;IACH,mDANW,MAAM,uBAEN,GAAG,iBACH,MAAM,GACJ,OAAO,CAKnB;IAED;;;;;;;;;;OAUG;IACH,yEALW,GAAG,iBACH,MAAM,aACN,MAAM,GACJ,OAAO,CAKnB;IAED;;;;;;;;OAQG;IACH,+CAJW,MAAM,iBACN,MAAM,GACJ,OAAO,CAKnB;IAED;;;;;;;;;OASG;IACH,sDALW,MAAM,iBACN,MAAM,aACN,MAAM,GACJ,OAAO,CAKnB;IAGD;;;;;;;;;OASG;IACH,yCALW,MAAM,iBACN,MAAM,UACN,MAAM,GACJ,OAAO,CAKnB;IAED;;;;;;;;;;OAUG;IACH,gDANW,MAAM,iBACN,MAAM,aACN,MAAM,UACN,MAAM,GACJ,OAAO,CAKnB;CACD"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export = CustomInputHandler;
|
|
2
2
|
declare class CustomInputHandler extends libPictSectionInputExtension {
|
|
3
3
|
constructor(pFable: any, pOptions: any, pServiceHash: any);
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
getDateTimeInputHTMLID(pInputHTMLID: any): string;
|
|
5
|
+
getTabularDateTimeHiddenInputHTMLID(pInputHTMLID: any, pRowIndex: any): string;
|
|
6
|
+
getTabularDateTimeInputHTMLID(pInputHTMLID: any, pRowIndex: any): string;
|
|
7
7
|
onDataMarshalToForm(pView: any, pGroup: any, pRow: any, pInput: any, pValue: any, pHTMLSelector: any): boolean;
|
|
8
8
|
onDataMarshalToFormTabular(pView: any, pGroup: any, pInput: any, pValue: any, pHTMLSelector: any, pRowIndex: any): boolean;
|
|
9
9
|
onDataRequest(pView: any, pInput: any, pValue: any, pHTMLSelector: any): boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-Provider-Input-DateTime.d.ts","sourceRoot":"","sources":["../../../source/providers/inputs/Pict-Provider-Input-DateTime.js"],"names":[],"mappings":";AAEA;IAEC,2DAGC;IAED,
|
|
1
|
+
{"version":3,"file":"Pict-Provider-Input-DateTime.d.ts","sourceRoot":"","sources":["../../../source/providers/inputs/Pict-Provider-Input-DateTime.js"],"names":[],"mappings":";AAEA;IAEC,2DAGC;IAED,kDAGC;IAED,+EAGC;IAED,yEAGC;IAGD,+GAIC;IAED,2HAIC;IAED,iFA0BC;IAED,wGAeC;CAGD"}
|
|
@@ -35,7 +35,7 @@ declare class ManifestFactory {
|
|
|
35
35
|
*
|
|
36
36
|
* @return {Object} the descriptor
|
|
37
37
|
*/
|
|
38
|
-
tabularRowAddDescriptor(pRecord: any): any;
|
|
38
|
+
tabularRowAddDescriptor(pManifestFactory: any, pRecord: any): any;
|
|
39
39
|
/**
|
|
40
40
|
* Create some manifests with a "factory" pattern.
|
|
41
41
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ManifestFactory.d.ts","sourceRoot":"","sources":["../../source/services/ManifestFactory.js"],"names":[],"mappings":";AAOA;IAEC,2DA+BC;IAxBA,cAAmC;IAcnC,+BAAoC;IASpC,2BAA2B;IAG5B,8CAOC;IAED;;;;;;OAMG;IACH,iCAJW,MAAM,OAiBhB;IAED;;;;;;;OAOG;IACH,mCALW,MAAM,MAAO,cACb,MAAM,OAkBhB;IAED;;;;OAIG;IACH,8BAFa,OAAO,CAenB;IAED;;;;;;OAMG;IACH,
|
|
1
|
+
{"version":3,"file":"ManifestFactory.d.ts","sourceRoot":"","sources":["../../source/services/ManifestFactory.js"],"names":[],"mappings":";AAOA;IAEC,2DA+BC;IAxBA,cAAmC;IAcnC,+BAAoC;IASpC,2BAA2B;IAG5B,8CAOC;IAED;;;;;;OAMG;IACH,iCAJW,MAAM,OAiBhB;IAED;;;;;;;OAOG;IACH,mCALW,MAAM,MAAO,cACb,MAAM,OAkBhB;IAED;;;;OAIG;IACH,8BAFa,OAAO,CAenB;IAED;;;;;;OAMG;IACH,kEA+HC;IAED;;;;;;OAMG;IACH,0CAJW,GAAG,GAEF,GAAG,CAwDd;CACD"}
|
|
@@ -45,7 +45,9 @@ declare class PictViewDynamicForm {
|
|
|
45
45
|
getInputFromHash(pInputHash: any): any;
|
|
46
46
|
getInput(pGroupIndex: any, pRowIndex: any, pInputIndex: any): any;
|
|
47
47
|
inputDataRequest(pInputHash: any): void;
|
|
48
|
+
inputEvent(pInputHash: any, pEvent: any): void;
|
|
48
49
|
inputDataRequestTabular(pGroupIndex: any, pInputIndex: any, pRowIndex: any): void;
|
|
50
|
+
inputEventTabular(pGroupIndex: any, pInputIndex: any, pRowIndex: any, pEvent: any): void;
|
|
49
51
|
get isPictSectionForm(): boolean;
|
|
50
52
|
}
|
|
51
53
|
//# sourceMappingURL=Pict-View-DynamicForm.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-View-DynamicForm.d.ts","sourceRoot":"","sources":["../../source/views/Pict-View-DynamicForm.js"],"names":[],"mappings":";AAQA;IAEC,
|
|
1
|
+
{"version":3,"file":"Pict-View-DynamicForm.d.ts","sourceRoot":"","sources":["../../source/views/Pict-View-DynamicForm.js"],"names":[],"mappings":";AAQA;IAEC,2DA6GC;IA/DA,uBAAqC;IAGrC,qBAA2H;IAG3H,sBAAwB;IA+BxB,+BAA6D;IAmB7D,8BAA+C;IAE/C,eAAmD;IAEnD,gCAAmC;IAKpC,mCA0CC;IAED,6EAmDC;IAED,oCAcC;IAED,uCA6BC;IAED,uBAcC;IAED,yBAYC;IAED,eASC;IAED,sBAGC;IAED,oDAwGC;IAED,6BAIC;IAED,6BA8GC;IAED,yBAqGC;IAED,0DAIC;IAED,2DAIC;IAED,yGAiBC;IAED,+FAGC;IAED,8GA0BC;IAED,+IAqDC;IAED,8BA8IC;IAID,+DAeC;IAED,iEAgDC;IAED,2CAUC;IAED,gCAcC;IAED,8CAsBC;IAED,sFA2BC;IAED,mEA0BC;IAED,iEA+BC;IAGD,iEAiCC;IAED,8CAsBC;IAED;;;;MAGC;IAED,uCAGC;IAED,kEAsBC;IAED,wCAkCC;IAED,+CAkCC;IAED,kFAyCC;IAED,yFAyCC;IAED,iCAGC;CACD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pict-View-Form-Metacontroller.d.ts","sourceRoot":"","sources":["../../source/views/Pict-View-Form-Metacontroller.js"],"names":[],"mappings":";AAaA;IAEC,
|
|
1
|
+
{"version":3,"file":"Pict-View-Form-Metacontroller.d.ts","sourceRoot":"","sources":["../../source/views/Pict-View-Form-Metacontroller.js"],"names":[],"mappings":";AAaA;IAEC,2DAkBC;IAdA,oBAA2C;IAW3C,+BAAuC;IAEvC,2BAA4C;IAG7C,yBAWC;IAED,uBAWC;IAED,4CAOC;IAED,qBAWC;IAED,eAIC;IAGD;;;;;;;;OAQG;IACH,uEAyBC;IAED;;;;;;;OAOG;IACH,4CAHW,MAAM,GACJ,IAAI,CAOhB;IAED;;;;;;;OAOG;IACH,6EAOC;IAED;;;;;OAKG;IACH,4FASC;IAED;;;;;;OAMG;IACH,6EAFa,IAAI,CA0BhB;IAED;;;;;OAKG;IACH,qCAHW,MAAM,GACJ,MAAM,GAAC,OAAO,CA2C1B;IAED;;;;;OAKG;IACH,qEAyGC;IAED,oCAGC;CACD"}
|