pro-design-vue 1.3.14 → 1.3.15

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.
@@ -1,4 +1,4 @@
1
- /*! Pro Design Vue v1.3.14 */
1
+ /*! Pro Design Vue v1.3.15 */
2
2
 
3
3
  (function (global, factory) {
4
4
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('ant-design-vue'), require('vue'), require('ant-design-vue/es/locale/zh_CN.js')) :
@@ -32,7 +32,7 @@
32
32
  const DEFAULT_NAMESPACE = "pro";
33
33
  const DEFAULT_LOCALE = "zh-CN";
34
34
 
35
- const version$1 = "1.3.14";
35
+ const version$1 = "1.3.15";
36
36
 
37
37
  const makeInstaller = (components = []) => {
38
38
  const install = (app) => {
@@ -17573,7 +17573,11 @@
17573
17573
  };
17574
17574
  const getFieldsValue = (nameList) => {
17575
17575
  if (nameList === true || nameList === void 0) {
17576
- return cloneDeep(formData.value);
17576
+ return transformKeySubmitValue(
17577
+ cloneDeep(formData.value),
17578
+ transformerMap.value,
17579
+ props.omitNil
17580
+ );
17577
17581
  }
17578
17582
  const obj = {};
17579
17583
  nameList.forEach((name) => {
@@ -17583,7 +17587,7 @@
17583
17587
  set(obj, namePath, value);
17584
17588
  }
17585
17589
  });
17586
- return obj;
17590
+ return transformKeySubmitValue(obj, transformerMap.value, props.omitNil);
17587
17591
  };
17588
17592
  const getFieldFormatValue = (name) => {
17589
17593
  const namePath = covertFormName(name);