bt-core-app 2.0.190 → 2.0.191
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/bt-core-app.js +10 -12
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -44838,32 +44838,30 @@ function Ase(e, t, a, n) {
|
|
|
44838
44838
|
function $se() {
|
|
44839
44839
|
const e = mu(), t = os();
|
|
44840
44840
|
function a(l, r) {
|
|
44841
|
-
|
|
44841
|
+
var i = e.params;
|
|
44842
|
+
l != null && (i.id = l);
|
|
44843
|
+
let o = {
|
|
44842
44844
|
...e,
|
|
44843
|
-
params:
|
|
44844
|
-
...e.params,
|
|
44845
|
-
id: l
|
|
44846
|
-
},
|
|
44845
|
+
params: i,
|
|
44847
44846
|
query: {
|
|
44848
44847
|
...e.query
|
|
44849
44848
|
},
|
|
44850
44849
|
replace: !!r
|
|
44851
44850
|
};
|
|
44852
|
-
t.replace(
|
|
44851
|
+
t.replace(o);
|
|
44853
44852
|
}
|
|
44854
44853
|
function n(l, r) {
|
|
44855
|
-
|
|
44854
|
+
var i = e.params;
|
|
44855
|
+
l != null && (i.searchString = l);
|
|
44856
|
+
let o = {
|
|
44856
44857
|
...e,
|
|
44857
|
-
params:
|
|
44858
|
-
...e.params,
|
|
44859
|
-
searchString: l
|
|
44860
|
-
},
|
|
44858
|
+
params: i,
|
|
44861
44859
|
query: {
|
|
44862
44860
|
...e.query
|
|
44863
44861
|
},
|
|
44864
44862
|
replace: !!r
|
|
44865
44863
|
};
|
|
44866
|
-
t.replace(
|
|
44864
|
+
t.replace(o);
|
|
44867
44865
|
}
|
|
44868
44866
|
return {
|
|
44869
44867
|
updateID: a,
|
package/package.json
CHANGED