pro-design-vue 1.2.23 → 1.2.25
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 +11 -5
- package/dist/index.full.min.js +3 -3
- package/dist/index.full.min.js.map +1 -1
- package/dist/index.full.min.mjs +3 -3
- package/dist/index.full.min.mjs.map +1 -1
- package/dist/index.full.mjs +11 -5
- package/es/packages/components/form/src/fields/FieldUploadButton.mjs +1 -1
- package/es/packages/components/form/src/fields/FieldUploadButton.mjs.map +1 -1
- package/es/packages/components/table/src/components/ToolBar/ToolBar.vue.mjs.map +1 -1
- package/es/packages/components/table/src/components/ToolBar/ToolBar.vue2.mjs +7 -1
- package/es/packages/components/table/src/components/ToolBar/ToolBar.vue2.mjs.map +1 -1
- package/es/packages/components/table/src/hooks/useFetchData.mjs +1 -1
- package/es/packages/components/table/src/hooks/useFetchData.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/packages/components/form/src/fields/FieldUploadButton.js +1 -1
- package/lib/packages/components/form/src/fields/FieldUploadButton.js.map +1 -1
- package/lib/packages/components/table/src/components/ToolBar/ToolBar.vue.js.map +1 -1
- package/lib/packages/components/table/src/components/ToolBar/ToolBar.vue2.js +7 -1
- package/lib/packages/components/table/src/components/ToolBar/ToolBar.vue2.js.map +1 -1
- package/lib/packages/components/table/src/hooks/useFetchData.js +1 -1
- package/lib/packages/components/table/src/hooks/useFetchData.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.2.
|
|
1
|
+
/*! Pro Design Vue v1.2.25 */
|
|
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.2.
|
|
35
|
+
const version$1 = "1.2.25";
|
|
36
36
|
|
|
37
37
|
const makeInstaller = (components = []) => {
|
|
38
38
|
const install = (app) => {
|
|
@@ -16154,7 +16154,7 @@
|
|
|
16154
16154
|
},
|
|
16155
16155
|
listType: {
|
|
16156
16156
|
type: String,
|
|
16157
|
-
default: "
|
|
16157
|
+
default: "text"
|
|
16158
16158
|
},
|
|
16159
16159
|
listIgnore: {
|
|
16160
16160
|
type: Boolean,
|
|
@@ -22107,7 +22107,7 @@
|
|
|
22107
22107
|
return false;
|
|
22108
22108
|
}
|
|
22109
22109
|
if (props.pagination && contextPagination.value) {
|
|
22110
|
-
return merge(contextPagination.value, props.pagination);
|
|
22110
|
+
return merge({}, contextPagination.value, props.pagination);
|
|
22111
22111
|
} else {
|
|
22112
22112
|
return (_a2 = props.pagination) != null ? _a2 : contextPagination.value;
|
|
22113
22113
|
}
|
|
@@ -35032,7 +35032,13 @@
|
|
|
35032
35032
|
};
|
|
35033
35033
|
const mergeOptions = vue.computed(() => {
|
|
35034
35034
|
if (props.options === false) {
|
|
35035
|
-
return {
|
|
35035
|
+
return {
|
|
35036
|
+
reload: false,
|
|
35037
|
+
density: true,
|
|
35038
|
+
setting: true,
|
|
35039
|
+
search: false,
|
|
35040
|
+
fullScreen: false
|
|
35041
|
+
};
|
|
35036
35042
|
}
|
|
35037
35043
|
return { ...defaultOptions, ...props.options };
|
|
35038
35044
|
});
|