pro-design-vue 1.0.0-beta.1 → 1.0.0-beta.2
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 +16 -10
- 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 +16 -10
- package/es/components/table/src/hooks/useFetchData.mjs +14 -8
- package/es/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/components/table/src/hooks/useFetchData.js +14 -8
- package/lib/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.0.0-beta.
|
1
|
+
/*! Pro Design Vue v1.0.0-beta.2 */
|
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-beta.
|
19
|
+
const version$1 = "1.0.0-beta.2";
|
20
20
|
|
21
21
|
const makeInstaller = (components = []) => {
|
22
22
|
const install = (app) => {
|
@@ -20481,14 +20481,20 @@
|
|
20481
20481
|
deep: true
|
20482
20482
|
}
|
20483
20483
|
);
|
20484
|
-
vue.watch(
|
20485
|
-
|
20486
|
-
|
20487
|
-
|
20488
|
-
|
20489
|
-
|
20490
|
-
|
20491
|
-
|
20484
|
+
vue.watch(
|
20485
|
+
formSearch,
|
20486
|
+
() => {
|
20487
|
+
setPagination({
|
20488
|
+
...pagination.value,
|
20489
|
+
current: 1
|
20490
|
+
});
|
20491
|
+
abortFetch();
|
20492
|
+
fetchListDebounce(false);
|
20493
|
+
},
|
20494
|
+
{
|
20495
|
+
immediate: true
|
20496
|
+
}
|
20497
|
+
);
|
20492
20498
|
const onTableChange = (pageInfo, filt, sort, extra) => {
|
20493
20499
|
var _a2;
|
20494
20500
|
if (extra.action === "paginate") {
|