mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2025-07-25 02:09:50 +02:00
regen all archive using antos build system
This commit is contained in:
@ -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.
@ -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({
|
||||
|
@ -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) {
|
||||
|
Reference in New Issue
Block a user