pro-design-vue 1.0.0-rc.2 → 1.0.0-rc.3

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.0.0-rc.2 */
1
+ /*! Pro Design Vue v1.0.0-rc.3 */
2
2
 
3
3
  (function (global, factory) {
4
4
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('ant-design-vue'), require('vue')) :
@@ -16,7 +16,7 @@
16
16
  const SCROLL_FIXED_CLASS = `_scroll__fixed_`;
17
17
  const DEFAULT_NAMESPACE = "pro";
18
18
 
19
- const version$1 = "1.0.0-rc.2";
19
+ const version$1 = "1.0.0-rc.3";
20
20
 
21
21
  const makeInstaller = (components = []) => {
22
22
  const install = (app) => {
@@ -29017,6 +29017,15 @@
29017
29017
  status: option.status,
29018
29018
  text: option.text
29019
29019
  });
29020
+ } else if (option.color) {
29021
+ cellValue = vue.createVNode(
29022
+ antDesignVue.Tag,
29023
+ {
29024
+ color: option.color,
29025
+ bordered: false
29026
+ },
29027
+ option.text
29028
+ );
29020
29029
  } else {
29021
29030
  cellValue = option.text || emptyText;
29022
29031
  }