sprof 0.0.188 → 0.0.190
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/core/classes/FileInfo.d.ts +1 -0
- package/dist/sprof.js +4 -3
- package/dist/sprof.umd.cjs +2 -2
- package/package.json +1 -1
package/dist/sprof.js
CHANGED
|
@@ -1644,6 +1644,7 @@ class Te {
|
|
|
1644
1644
|
a(this, "originalName", "");
|
|
1645
1645
|
a(this, "fileSystemPath", "");
|
|
1646
1646
|
a(this, "itemId");
|
|
1647
|
+
a(this, "itemOneId");
|
|
1647
1648
|
a(this, "description", "");
|
|
1648
1649
|
a(this, "order", 0);
|
|
1649
1650
|
B.BuildClass(this, e);
|
|
@@ -5104,19 +5105,19 @@ let hh = class {
|
|
|
5104
5105
|
a(this, "count", 0);
|
|
5105
5106
|
}
|
|
5106
5107
|
async Search(e) {
|
|
5107
|
-
const i = await de.Get({ query:
|
|
5108
|
+
const i = await de.Get({ query: `search?key=${e.key}&query=${e.query}` });
|
|
5108
5109
|
i && i.searchGroup && i.searchGroup.options.forEach((n) => {
|
|
5109
5110
|
e.searchObjects.push({ id: n.id, value: n.value, label: n.label, description: n.description });
|
|
5110
5111
|
});
|
|
5111
5112
|
}
|
|
5112
5113
|
async mainSearch(e) {
|
|
5113
|
-
this.SetSearchModel(await de.Get({ query:
|
|
5114
|
+
this.SetSearchModel(await de.Get({ query: `search/main?searchModel=${e.toUrl()}` }));
|
|
5114
5115
|
}
|
|
5115
5116
|
async Full(e) {
|
|
5116
5117
|
e.options = [], e.searchGroups.forEach((n) => {
|
|
5117
5118
|
n.options = [];
|
|
5118
5119
|
});
|
|
5119
|
-
const i = await de.Get({ query: `main?searchModel=${e.toUrl()}` });
|
|
5120
|
+
const i = await de.Get({ query: `search/main?searchModel=${e.toUrl()}` });
|
|
5120
5121
|
this.SetSearchModel(i);
|
|
5121
5122
|
}
|
|
5122
5123
|
ToggleDrawer(e) {
|