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.
- package/dist/index.full.js +8 -4
- package/dist/index.full.min.js +8 -8
- package/dist/index.full.min.js.map +1 -1
- package/dist/index.full.min.mjs +8 -8
- package/dist/index.full.min.mjs.map +1 -1
- package/dist/index.full.mjs +8 -4
- package/es/components/table/src/components/interface.d.ts +7 -5
- package/es/index.d.ts +6 -4
- package/es/packages/components/form/src/hooks/useAction.mjs +6 -2
- package/es/packages/components/form/src/hooks/useAction.mjs.map +1 -1
- package/es/packages/components/table/src/components/Table.mjs.map +1 -1
- package/es/packages/components/table/src/components/interface.mjs.map +1 -1
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/es/version.mjs.map +1 -1
- package/lib/components/table/src/components/interface.d.ts +7 -5
- package/lib/index.d.ts +6 -4
- package/lib/packages/components/form/src/hooks/useAction.js +6 -2
- package/lib/packages/components/form/src/hooks/useAction.js.map +1 -1
- package/lib/packages/components/table/src/components/Table.js.map +1 -1
- package/lib/packages/components/table/src/components/interface.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/lib/version.js.map +1 -1
- package/package.json +1 -1
package/dist/index.full.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! Pro Design Vue v1.3.
|
|
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.
|
|
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
|
|
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);
|