@iankibetsh/shframework 5.5.4 → 5.5.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/dist/library.js +2 -2
- package/dist/library.mjs +2 -2
- package/package.json +1 -1
package/dist/library.js
CHANGED
|
@@ -5454,8 +5454,8 @@ const loadMoreRecords = () => reloadData(page.value + 1, 1);
|
|
|
5454
5454
|
|
|
5455
5455
|
const rangeChanged = (newRange) => {
|
|
5456
5456
|
range.value = newRange;
|
|
5457
|
-
from.value = newRange.from.
|
|
5458
|
-
to.value = newRange.to.
|
|
5457
|
+
from.value = newRange.from.toFormat('LL/dd/yyyy');
|
|
5458
|
+
to.value = newRange.to.toFormat('LL/dd/yyyy');
|
|
5459
5459
|
period.value = newRange.period;
|
|
5460
5460
|
reloadData();
|
|
5461
5461
|
};
|
package/dist/library.mjs
CHANGED
|
@@ -5443,8 +5443,8 @@ const loadMoreRecords = () => reloadData(page.value + 1, 1);
|
|
|
5443
5443
|
|
|
5444
5444
|
const rangeChanged = (newRange) => {
|
|
5445
5445
|
range.value = newRange;
|
|
5446
|
-
from.value = newRange.from.
|
|
5447
|
-
to.value = newRange.to.
|
|
5446
|
+
from.value = newRange.from.toFormat('LL/dd/yyyy');
|
|
5447
|
+
to.value = newRange.to.toFormat('LL/dd/yyyy');
|
|
5448
5448
|
period.value = newRange.period;
|
|
5449
5449
|
reloadData();
|
|
5450
5450
|
};
|