@cc-component/cc-ex-component 1.2.0 → 1.2.1

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.
@@ -5,11 +5,12 @@ const { ccclass, property } = _decorator;
5
5
 
6
6
  @ccclass('BaseReference')
7
7
  export class BaseReference extends Component {
8
- rc: ReferenceComponent;
9
- isInit: boolean = false;
10
- isLoad: boolean = false;
11
- vmParams: any;
8
+ private rc: ReferenceComponent;
9
+ private isInit: boolean = false;
10
+ private isLoad: boolean = false;
11
+ private vmParams: any;
12
12
  viewModel: BaseViewModelData;
13
+ param: any;
13
14
  initReferenceCollector() {
14
15
  if (this.isInit) return;
15
16
  this.isInit = true;
@@ -67,7 +67,7 @@ export class ReferenceComponent extends Component {
67
67
  this._refresh_bind_data_all = false;
68
68
  }
69
69
 
70
- isComDebug = false
70
+ isComDebug = true
71
71
 
72
72
  @property({ type: CollectorNodeData, readonly: false })
73
73
  private _nodes: CollectorNodeData[] = [];
@@ -9,7 +9,6 @@ import { EditBox, Toggle, Slider, Button, ProgressBar, Node } from 'cc';
9
9
  import { RichText } from 'cc';
10
10
  import { Component } from 'cc';
11
11
  import { js } from 'cc';
12
- import { escape } from 'querystring';
13
12
  import { IIndexPath } from '../lib/tableView/IListView';
14
13
  import { ListView } from '../lib/tableView/ListView';
15
14
  import { TableView } from '../lib/tableView/TableView';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cc-component/cc-ex-component",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "engine": ">=3.8.6",
5
5
  "description": "系统组件添加常用扩展方法",
6
6
  "main": "index.ts",