biz9-logic 4.8.225 → 4.8.226

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.5'
1
+ VERSION='7.0.6'
2
2
  TITLE='BiZ9-Logic';
3
3
  REPO='git@github.com:biz9framework/biz9-logic.git';
4
4
  BRANCH='main';
package/index.js CHANGED
@@ -191,7 +191,7 @@ class Page_Logic {
191
191
  }
192
192
  return item_list;
193
193
  };
194
- static get_page_section_type_list = () => {
194
+ static get_section_type_list = () => {
195
195
  return [
196
196
  {value:'text',label:'Text'},
197
197
  {value:'note',label:'Note'},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biz9-logic",
3
- "version": "4.8.225",
3
+ "version": "4.8.226",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
package/test.js CHANGED
@@ -32,9 +32,10 @@ describe("connect", () => {
32
32
 
33
33
  function(call) {
34
34
  console.log('PAGE-SECTION-START');
35
+ console.log(Page_Logic.get_page_section_type_list());
35
36
  //console.log(Page_Logic.get_section_property('text',1,2,false));
36
- console.log(Page_Logic.get_section_property_list(FieldType.SECTION_PROPERTY_TYPE_LIST_VALUE,1,2,3));
37
- console.log(Page_Logic.get_section_property_list(FieldType.SECTION_PROPERTY_TYPE_LIST_FIELD,1,2,3));
37
+ //console.log(Page_Logic.get_section_property_list(FieldType.SECTION_PROPERTY_TYPE_LIST_VALUE,1,2,3));
38
+ //console.log(Page_Logic.get_section_property_list(FieldType.SECTION_PROPERTY_TYPE_LIST_FIELD,1,2,3));
38
39
  console.log('PAGE-SECTION-END');
39
40
 
40
41