pro-design-vue 1.5.0 → 1.5.1
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 +5 -5
- package/dist/index.full.min.js +2 -2
- package/dist/index.full.min.js.map +1 -1
- package/dist/index.full.min.mjs +2 -2
- package/dist/index.full.min.mjs.map +1 -1
- package/dist/index.full.mjs +5 -5
- package/es/packages/components/button/src/Button.mjs +3 -3
- package/es/packages/components/button/src/Button.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/button/src/Button.js +3 -3
- package/lib/packages/components/button/src/Button.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.5.
|
|
1
|
+
/*! Pro Design Vue v1.5.1 */
|
|
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')) :
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
const SERIAL_NUMBER_COLUMN_KEY = "serial-number";
|
|
35
35
|
const OPERATION_COLUMN_KEY = "operation";
|
|
36
36
|
|
|
37
|
-
const version$1 = "1.5.
|
|
37
|
+
const version$1 = "1.5.1";
|
|
38
38
|
|
|
39
39
|
const makeInstaller = (components = []) => {
|
|
40
40
|
const install = (app) => {
|
|
@@ -10466,9 +10466,6 @@
|
|
|
10466
10466
|
},
|
|
10467
10467
|
icon: () => icon
|
|
10468
10468
|
});
|
|
10469
|
-
if (props.disabled) {
|
|
10470
|
-
return defaultDom;
|
|
10471
|
-
}
|
|
10472
10469
|
if (props.tooltip) {
|
|
10473
10470
|
const _defaultDom = /* @__PURE__ */ (function() {
|
|
10474
10471
|
return defaultDom;
|
|
@@ -10479,6 +10476,9 @@
|
|
|
10479
10476
|
default: () => [_defaultDom]
|
|
10480
10477
|
});
|
|
10481
10478
|
}
|
|
10479
|
+
if (props.disabled) {
|
|
10480
|
+
return defaultDom;
|
|
10481
|
+
}
|
|
10482
10482
|
if (props.mode === "popconfirm") {
|
|
10483
10483
|
return vue.createVNode(antDesignVue.Popconfirm, vue.mergeProps(props.popconfirmProps, {
|
|
10484
10484
|
"onConfirm": () => {
|