raise-common-lib 0.0.143 → 0.0.145
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/bundles/raise-common-lib.umd.js +7 -5
- package/bundles/raise-common-lib.umd.js.map +1 -1
- package/bundles/raise-common-lib.umd.min.js +1 -1
- package/bundles/raise-common-lib.umd.min.js.map +1 -1
- package/esm2015/lib/form/drawer-form/drawer-form.component.js +4 -2
- package/esm2015/lib/layout/multi-tab/index.component.js +5 -5
- package/esm5/lib/form/drawer-form/drawer-form.component.js +4 -2
- package/esm5/lib/layout/multi-tab/index.component.js +5 -5
- package/fesm2015/raise-common-lib.js +7 -5
- package/fesm2015/raise-common-lib.js.map +1 -1
- package/fesm5/raise-common-lib.js +7 -5
- package/fesm5/raise-common-lib.js.map +1 -1
- package/package.json +1 -1
- package/raise-common-lib.metadata.json +1 -1
|
@@ -3600,7 +3600,7 @@
|
|
|
3600
3600
|
* @return {?}
|
|
3601
3601
|
*/
|
|
3602
3602
|
function (ele) { return ele.url !== tab.url; }));
|
|
3603
|
-
this.clearCache(
|
|
3603
|
+
this.clearCache(tab.url);
|
|
3604
3604
|
if (!noChange && this.selectedTab === idx) {
|
|
3605
3605
|
/** @type {?} */
|
|
3606
3606
|
var targetIdx = Math.max(0, idx - 1);
|
|
@@ -3656,7 +3656,7 @@
|
|
|
3656
3656
|
* @return {?}
|
|
3657
3657
|
*/
|
|
3658
3658
|
function (ele) { return ele.url !== secondTab_1.url; }));
|
|
3659
|
-
this.clearCache(
|
|
3659
|
+
this.clearCache(secondTab_1.url);
|
|
3660
3660
|
}
|
|
3661
3661
|
/** @type {?} */
|
|
3662
3662
|
var localPermissions = sessionStorage.getItem("permissions") ||
|
|
@@ -3715,7 +3715,7 @@
|
|
|
3715
3715
|
* @return {?}
|
|
3716
3716
|
*/
|
|
3717
3717
|
function (ele) { return !ele.url.includes(_this.singleReuseUrls[singleIdx_1]); }));
|
|
3718
|
-
this.keepAlive.clearCache(url);
|
|
3718
|
+
this.keepAlive.clearCache(this.urlWithoutQuery(url));
|
|
3719
3719
|
this.drawer.deleteCache(url);
|
|
3720
3720
|
}
|
|
3721
3721
|
this.addTab(url, title);
|
|
@@ -3779,7 +3779,7 @@
|
|
|
3779
3779
|
* @return {?}
|
|
3780
3780
|
*/
|
|
3781
3781
|
function (url) {
|
|
3782
|
-
this.keepAlive.clearCache(url); // 调用自定义策略的清除缓存方法
|
|
3782
|
+
this.keepAlive.clearCache(this.urlWithoutQuery(url)); // 调用自定义策略的清除缓存方法
|
|
3783
3783
|
this.drawer.deleteCache(url);
|
|
3784
3784
|
};
|
|
3785
3785
|
/**
|
|
@@ -22241,7 +22241,9 @@
|
|
|
22241
22241
|
if (previous[key] !== currentValue) {
|
|
22242
22242
|
/** @type {?} */
|
|
22243
22243
|
var field = _this.getField(key);
|
|
22244
|
-
|
|
22244
|
+
if (field) {
|
|
22245
|
+
_this.formItemValidator(field);
|
|
22246
|
+
}
|
|
22245
22247
|
}
|
|
22246
22248
|
}));
|
|
22247
22249
|
};
|