@monoui/vuejs 1.1.84 → 1.1.85

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monoui/vuejs",
3
- "version": "1.1.84",
3
+ "version": "1.1.85",
4
4
  "description": "This project will contain MonoFor UI Framework",
5
5
  "main": "./dist/main.js",
6
6
  "repository": "git@gitlab.com:monoui/vuejs.git",
@@ -629,7 +629,8 @@ export default {
629
629
  column: "CreatedDate",
630
630
  title: "All",
631
631
  frame: 3,
632
- options: [3, 6, 9, 12, "Clear"]
632
+ options: [3, 6, 9, 12, "Clear"],
633
+ operator: 0
633
634
  }
634
635
  };
635
636
  },
@@ -674,6 +675,9 @@ export default {
674
675
  if (this.timeFrame.title)
675
676
  this.finalTimeFrame.title = this.timeFrame.title;
676
677
 
678
+ if (this.timeFrame.operator)
679
+ this.finalTimeFrame.operator = this.timeFrame.operator;
680
+
677
681
  if (this.timeFrame.frame)
678
682
  this.finalTimeFrame.frame = this.timeFrame.frame;
679
683