regen all archive using antos build system

This commit is contained in:
DanyLE
2023-06-01 16:14:35 +02:00
parent 7cbd4ce979
commit 0227f02ad6
69 changed files with 200 additions and 138 deletions

View File

@ -27,8 +27,10 @@
"require":["ts"],
"jobs": [
{
"name": "ts-import",
"data": ["sdk://core/ts/core.d.ts", "sdk://core/ts/jquery.d.ts","sdk://core/ts/antos.d.ts"]
"name": "ts-antos-sdk",
"data": {
"version": "2.0.x"
}
},
{
"name": "ts-compile",

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -59,8 +59,7 @@ namespace OS {
});
}
protected _wr(t: string, d: any): Promise<any> {
this.cache = d;
protected _wr(t: string): Promise<any> {
return new Promise((resolve, reject) =>
{
resolve({

View File

@ -817,7 +817,7 @@ namespace OS {
dataid: "recent",
nodes: recent,
onchildselect: (
e: GUI.TagEventType<GUI.tag.MenuEventData>,
e: GUI.TagEventType<GUI.tag.StackMenuEventData>,
r: Antedit
) => {
const handle = e.data.item.data.text.asFileHandle();
@ -849,7 +849,7 @@ namespace OS {
},
],
onchildselect: (
e: GUI.TagEventType<GUI.tag.MenuEventData>,
e: GUI.TagEventType<GUI.tag.StackMenuEventData>,
r: Antedit
) => {
return this.menuAction(e.data.item.data.dataid, r);
@ -866,9 +866,9 @@ namespace OS {
* @memberof Antedit
*/
private ctxFileMenuHandle(
e: GUI.TagEventType<GUI.tag.MenuEventData>
e: GUI.TagEventType<GUI.tag.StackMenuEventData>
): void {
const el = e.data.item as GUI.tag.MenuEntryTag;
const el = e.data.item;
if (!el) {
return;
}
@ -1150,7 +1150,7 @@ namespace OS {
}
],
onchildselect: (
e: GUI.TagEventType<GUI.tag.MenuEventData>,
e: GUI.TagEventType<GUI.tag.StackMenuEventData>,
r: EditorFileHandle
) => {
switch (e.data.item.data.dataid) {