sti-antd-package 0.0.17 → 0.0.18

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/index.esm.js CHANGED
@@ -8425,8 +8425,8 @@ const TableAsyncSearchComponent = ({ noInitSubmit, noButton, name, items, header
8425
8425
  'date-range',
8426
8426
  ].includes(type))
8427
8427
  result[name] = Array.isArray(currentValue)
8428
- ? currentValue.map(item => toDayjs(item))
8429
- : toDayjs(currentValue);
8428
+ ? currentValue.map(item => toDayjs(item, true))
8429
+ : toDayjs(currentValue, true);
8430
8430
  return result;
8431
8431
  }, {});
8432
8432
  const handleSubmit = (inputs) => {
package/dist/index.js CHANGED
@@ -8444,8 +8444,8 @@ const TableAsyncSearchComponent = ({ noInitSubmit, noButton, name, items, header
8444
8444
  'date-range',
8445
8445
  ].includes(type))
8446
8446
  result[name] = Array.isArray(currentValue)
8447
- ? currentValue.map(item => toDayjs(item))
8448
- : toDayjs(currentValue);
8447
+ ? currentValue.map(item => toDayjs(item, true))
8448
+ : toDayjs(currentValue, true);
8449
8449
  return result;
8450
8450
  }, {});
8451
8451
  const handleSubmit = (inputs) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sti-antd-package",
3
3
  "description": "STI ANT Design",
4
- "version": "0.0.17",
4
+ "version": "0.0.18",
5
5
  "type": "module",
6
6
  "module": "dist/index.esm.js",
7
7
  "types": "dist/index.d.ts",