@ives_xxz/framework 1.3.4 → 1.3.6

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/FW.d.ts CHANGED
@@ -281,6 +281,7 @@ declare namespace FW {
281
281
  reconnectInternal: number;
282
282
  protocolSymbol: Symbol;
283
283
  protocolPollingTime: number;
284
+ certificate: cc.Asset;
284
285
  };
285
286
 
286
287
  /**
@@ -58,7 +58,10 @@ export default class FWRollingViewNesting extends cc.Component {
58
58
  ) {
59
59
  let touch = event.touch;
60
60
  if (viewGroup.content) {
61
- viewGroup._handleReleaseLogic(touch);
61
+ if (viewGroup instanceof cc.PageView) {
62
+ } else {
63
+ viewGroup._handleReleaseLogic(touch);
64
+ }
62
65
  }
63
66
  }
64
67
  if (
@@ -68,7 +71,10 @@ export default class FWRollingViewNesting extends cc.Component {
68
71
  if (!event.simulate) {
69
72
  let touch = event.touch;
70
73
  if (viewGroup.content) {
71
- viewGroup._handleReleaseLogic(touch);
74
+ if (viewGroup instanceof cc.PageView) {
75
+ } else {
76
+ viewGroup._handleReleaseLogic(touch);
77
+ }
72
78
  }
73
79
  }
74
80
  }
package/package.json CHANGED
@@ -1,11 +1,9 @@
1
1
  {
2
2
  "name": "@ives_xxz/framework",
3
- "version": "1.3.4",
3
+ "version": "1.3.6",
4
4
  "description": "cocoscreator 2.x mvc framework",
5
5
  "main": "index.js",
6
- "keywords": [
7
- "123456"
8
- ],
6
+ "keywords": ["123456"],
9
7
  "author": "ives",
10
8
  "license": "ISC"
11
- }
9
+ }