biz9-logic 4.8.227 → 4.8.228

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/biz9_config CHANGED
@@ -1,4 +1,4 @@
1
- VERSION='7.0.7'
1
+ VERSION='7.0.8'
2
2
  TITLE='BiZ9-Logic';
3
3
  REPO='git@github.com:biz9framework/biz9-logic.git';
4
4
  BRANCH='main';
package/index.js CHANGED
@@ -199,23 +199,8 @@ class Page_Logic {
199
199
  {value:'list',label:'List'},
200
200
  ];
201
201
  };
202
- static get_section_property_type = (type,section_id,value_id,is_title) =>{
202
+ static get_section_property_type = (section_id,value_id,is_title) =>{
203
203
  //page['section_1_value_1_type'] -- / text,note,photo,list
204
- let type_str = '';
205
- switch(type){
206
- case 'text':
207
- type_str = 'text';
208
- break;
209
- case 'note':
210
- type_str = 'note';
211
- break;
212
- case 'photo':
213
- type_str = 'photo';
214
- break;
215
- case 'list':
216
- type_str = 'list';
217
- break;
218
- };
219
204
  return !is_title ? 'section_'+section_id + '_value_'+value_id + "_type" : 'Section '+section_id + ' Value '+value_id;
220
205
  }
221
206
  static get_section_property_type_value = (type,section_id,value_id) =>{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biz9-logic",
3
- "version": "4.8.227",
3
+ "version": "4.8.228",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
package/test.js CHANGED
@@ -33,8 +33,8 @@ describe("connect", () => {
33
33
  function(call) {
34
34
  console.log('PAGE-SECTION-START');
35
35
  //console.log(Page_Logic.get_page_section_type_list());
36
- //console.log(Page_Logic.get_section_property_type('text',1,2,true));
37
- console.log(Page_Logic.get_section_property_type_value('text',1,2,true));
36
+ console.log(Page_Logic.get_section_property_type(1,2,true));
37
+ //console.log(Page_Logic.get_section_property_type_value('text',1,2,true));
38
38
  //console.log(Page_Logic.get_section_property_list(FieldType.SECTION_PROPERTY_TYPE_LIST_VALUE,1,2,3));
39
39
  //console.log(Page_Logic.get_section_property_list(FieldType.SECTION_PROPERTY_TYPE_LIST_FIELD,1,2,3));
40
40
  console.log('PAGE-SECTION-END');