pro-design-vue 1.2.22 → 1.2.24

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.
Files changed (27) hide show
  1. package/dist/index.full.js +13 -7
  2. package/dist/index.full.min.js +6 -6
  3. package/dist/index.full.min.js.map +1 -1
  4. package/dist/index.full.min.mjs +6 -6
  5. package/dist/index.full.min.mjs.map +1 -1
  6. package/dist/index.full.mjs +13 -7
  7. package/es/packages/components/form/src/fields/FieldUploadButton.mjs +1 -1
  8. package/es/packages/components/form/src/fields/FieldUploadButton.mjs.map +1 -1
  9. package/es/packages/components/table/src/components/Body/BodyCell.mjs +3 -3
  10. package/es/packages/components/table/src/components/Body/BodyCell.mjs.map +1 -1
  11. package/es/packages/components/table/src/components/ToolBar/ToolBar.vue.mjs.map +1 -1
  12. package/es/packages/components/table/src/components/ToolBar/ToolBar.vue2.mjs +7 -1
  13. package/es/packages/components/table/src/components/ToolBar/ToolBar.vue2.mjs.map +1 -1
  14. package/es/version.d.ts +1 -1
  15. package/es/version.mjs +1 -1
  16. package/es/version.mjs.map +1 -1
  17. package/lib/packages/components/form/src/fields/FieldUploadButton.js +1 -1
  18. package/lib/packages/components/form/src/fields/FieldUploadButton.js.map +1 -1
  19. package/lib/packages/components/table/src/components/Body/BodyCell.js +3 -3
  20. package/lib/packages/components/table/src/components/Body/BodyCell.js.map +1 -1
  21. package/lib/packages/components/table/src/components/ToolBar/ToolBar.vue.js.map +1 -1
  22. package/lib/packages/components/table/src/components/ToolBar/ToolBar.vue2.js +7 -1
  23. package/lib/packages/components/table/src/components/ToolBar/ToolBar.vue2.js.map +1 -1
  24. package/lib/version.d.ts +1 -1
  25. package/lib/version.js +1 -1
  26. package/lib/version.js.map +1 -1
  27. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- /*! Pro Design Vue v1.2.22 */
1
+ /*! Pro Design Vue v1.2.24 */
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.22";
35
+ const version$1 = "1.2.24";
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: "picture-card"
16157
+ default: "text"
16158
16158
  },
16159
16159
  listIgnore: {
16160
16160
  type: Boolean,
@@ -30901,13 +30901,13 @@
30901
30901
  () => option.text
30902
30902
  );
30903
30903
  } else {
30904
- cellValue = option.text || emptyText;
30904
+ cellValue = option.text;
30905
30905
  }
30906
30906
  } else {
30907
- cellValue = emptyText;
30907
+ cellValue = value === null || value === void 0 || value === "" ? emptyText : value;
30908
30908
  }
30909
30909
  } else {
30910
- cellValue = value || emptyText;
30910
+ cellValue = value === null || value === void 0 || value === "" ? emptyText : value;
30911
30911
  }
30912
30912
  bodyCell = [
30913
30913
  typeof cellValue === "object" && isValidElement(cellValue) || typeof cellValue !== "object" ? cellValue : null
@@ -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
  });