pro-design-vue 1.1.2 → 1.1.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.
- package/dist/index.full.js +7 -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 +7 -5
- package/es/components/table/src/components/Form/Form.mjs +4 -2
- package/es/components/table/src/components/Form/Form.mjs.map +1 -1
- package/es/components/table/src/components/Table.mjs +1 -1
- package/es/components/table/src/components/Table.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/Form/Form.js +4 -2
- package/lib/components/table/src/components/Form/Form.js.map +1 -1
- package/lib/components/table/src/components/Table.js +1 -1
- package/lib/components/table/src/components/Table.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.1.
|
1
|
+
/*! Pro Design Vue v1.1.3 */
|
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')) :
|
@@ -32,7 +32,7 @@
|
|
32
32
|
const DEFAULT_NAMESPACE = "pro";
|
33
33
|
const DEFAULT_LOCALE = "zh-CN";
|
34
34
|
|
35
|
-
const version$1 = "1.1.
|
35
|
+
const version$1 = "1.1.3";
|
36
36
|
|
37
37
|
const makeInstaller = (components = []) => {
|
38
38
|
const install = (app) => {
|
@@ -33711,7 +33711,9 @@
|
|
33711
33711
|
default: void 0
|
33712
33712
|
}
|
33713
33713
|
},
|
33714
|
-
setup: (props
|
33714
|
+
setup: (props, {
|
33715
|
+
slots
|
33716
|
+
}) => {
|
33715
33717
|
var _a, _b, _c;
|
33716
33718
|
const activeTabKey = vue.ref(((_a = props.search) == null ? void 0 : _a.cardProps) !== false ? (_c = (_b = props.search) == null ? void 0 : _b.cardProps) == null ? void 0 : _c.activeTabKey : "");
|
33717
33719
|
const cardProps = vue.computed(() => {
|
@@ -33768,7 +33770,7 @@
|
|
33768
33770
|
"onInit": (values) => {
|
33769
33771
|
submit(values, true);
|
33770
33772
|
}
|
33771
|
-
}),
|
33773
|
+
}), slots);
|
33772
33774
|
if (((_c2 = props.search) == null ? void 0 : _c2.cardProps) !== false && props.tableShowCard) {
|
33773
33775
|
return vue.createVNode(antDesignVue.Card, vue.mergeProps({
|
33774
33776
|
"class": `${props.prefixCls}-search`,
|
@@ -34177,7 +34179,7 @@
|
|
34177
34179
|
...newValues
|
34178
34180
|
});
|
34179
34181
|
}
|
34180
|
-
},
|
34182
|
+
}, slots), tableDom]);
|
34181
34183
|
};
|
34182
34184
|
}
|
34183
34185
|
});
|