biz9-logic 4.8.229 → 4.8.230

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 (3) hide show
  1. package/biz9_config +1 -1
  2. package/index.js +3 -1
  3. package/package.json +1 -1
package/biz9_config CHANGED
@@ -1,4 +1,4 @@
1
- VERSION='7.0.9'
1
+ VERSION='7.1.0'
2
2
  TITLE='BiZ9-Logic';
3
3
  REPO='git@github.com:biz9framework/biz9-logic.git';
4
4
  BRANCH='main';
package/index.js CHANGED
@@ -200,10 +200,12 @@ class Page_Logic {
200
200
  ];
201
201
  };
202
202
  static get_section_property_type = (section_id,value_id,is_title) =>{
203
+ //section_1_value_1_type
203
204
  //page['section_1_value_1_type'] -- / text,note,photo,list
204
205
  return !is_title ? 'section_'+section_id + '_value_'+value_id + "_type" : 'Section '+section_id + ' Value '+value_id;
205
206
  }
206
207
  static get_section_property_type_value = (type,section_id,value_id) =>{
208
+ //section_1_value_1_text_value
207
209
  //page['section_1_value_1_[text,note,photo,list]_value']
208
210
  let type_str = '';
209
211
  switch(type){
@@ -223,7 +225,7 @@ class Page_Logic {
223
225
  return 'section_'+section_id + '_value_'+value_id + "_" + type_str + "_value";
224
226
  }
225
227
 
226
- static get_section_property_list = (type,section_id,value_id,row_id) =>{
228
+ static get_section_property_type_list = (type,section_id,value_id,row_id) =>{
227
229
  //page['section_1_value_1_type'] -- / list
228
230
  //page['section_1_value_1_list_field_1']
229
231
  //page['section_1_value_1_list_value_1']
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biz9-logic",
3
- "version": "4.8.229",
3
+ "version": "4.8.230",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"