@newview/ui 1.1.81 → 1.1.82
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/README.md +3 -0
- package/dist/newview-ui.js +6 -4
- package/dist/newview-ui.umd.cjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/newview-ui.js
CHANGED
|
@@ -58658,8 +58658,9 @@ let GridInstance$1 = class GridInstance2 extends BaseInstance {
|
|
|
58658
58658
|
}
|
|
58659
58659
|
break;
|
|
58660
58660
|
case "daterange":
|
|
58661
|
-
|
|
58662
|
-
|
|
58661
|
+
let startDate = this.utilities.format(value[0], "yyyy-MM-DD");
|
|
58662
|
+
let EndDate = this.utilities.format(value[1], "yyyy-MM-DD");
|
|
58663
|
+
_queryWrapper.between(`date_format(${key2},'%Y-%m-%d')`, startDate, EndDate);
|
|
58663
58664
|
break;
|
|
58664
58665
|
case "numberrange":
|
|
58665
58666
|
if (!this.utilities.isNull(value[0])) {
|
|
@@ -241129,8 +241130,9 @@ class GridInstance extends BaseInstance {
|
|
|
241129
241130
|
}
|
|
241130
241131
|
break;
|
|
241131
241132
|
case "daterange":
|
|
241132
|
-
|
|
241133
|
-
|
|
241133
|
+
let startDate = this.utilities.format(value[0], "yyyy-MM-DD");
|
|
241134
|
+
let EndDate = this.utilities.format(value[1], "yyyy-MM-DD");
|
|
241135
|
+
_queryWrapper.between(`date_format(${key2},'%Y-%m-%d')`, startDate, EndDate);
|
|
241134
241136
|
break;
|
|
241135
241137
|
case "numberrange":
|
|
241136
241138
|
if (!this.utilities.isNull(value[0])) {
|