cavalion-vcl 1.1.69 → 1.1.70

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/CHANGELOG.md CHANGED
@@ -1,9 +1,10 @@
1
- ### 2022/10/30 - 1.1.69
1
+ ### 2022/10/30 - 1.1.70
2
2
 
3
3
  `#VA-20221028-1`, `-2` & `-3`
4
4
 
5
5
  * ebae088 - lowers SELECT\_TIMEMOUT\_MS for [vcl/ui/Tab(s)](src/ui/Tabs.js)
6
6
  * 4bd2244 - simplifies ids used in [Component.protoype.nextTick]()()
7
+ * Fixes the bug where Query.properties.onFilterObject wasn't defined correctly
7
8
 
8
9
  ### 2022/07/28 - 1.1.68
9
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cavalion-vcl",
3
- "version": "1.1.69",
3
+ "version": "1.1.70",
4
4
  "description": "Visual Component Library for vcl-comps",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/data/Array.js CHANGED
@@ -341,7 +341,7 @@ define(function(require) {
341
341
  type: Type.EVENT
342
342
  },
343
343
  "onFilterObject": {
344
- type: Type.FUNCTION,
344
+ type: Type.EVENT,
345
345
  editorInfo: {
346
346
  defaultValue: "(function(object, index, context) {\n\t//return {true} to exclude item from exposed array\n})"
347
347
  }