@famibee/skynovel 1.30.3 → 1.30.6

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/preload.js CHANGED
@@ -1,2 +1,2 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});var c=require("electron");const n=console.error,p={getInfo:()=>c.ipcRenderer.invoke("getInfo").catch(n),existsSync:e=>c.ipcRenderer.invoke("existsSync",e).catch(n),copySync:(e,i)=>c.ipcRenderer.invoke("copySync",e,i).catch(n),removeSync:e=>c.ipcRenderer.invoke("removeSync",e).catch(n),ensureFileSync:e=>c.ipcRenderer.invoke("ensureFileSync",e).catch(n),readFileSync:e=>c.ipcRenderer.invoke("readFileSync",e).catch(n),readFile:(e,i)=>c.ipcRenderer.invoke("readFile",e,i).catch(n),writeFileSync:(e,i,r)=>c.ipcRenderer.invoke("writeFileSync",e,i,r).catch(n),appendFile:(e,i,r)=>c.ipcRenderer.invoke("appendFile",e,i,r).catch(n),win_close:()=>c.ipcRenderer.invoke("win_close").catch(n),win_setTitle:e=>c.ipcRenderer.invoke("win_setTitle",e).catch(n),showMessageBox:e=>c.ipcRenderer.invoke("showMessageBox",e).catch(n),capturePage:e=>c.ipcRenderer.invoke("capturePage",e).catch(n),navigate_to:e=>c.ipcRenderer.invoke("navigate_to",e).catch(n),openDevTools:()=>c.ipcRenderer.invoke("openDevTools").catch(n),win_ev_devtools_opened:e=>c.ipcRenderer.invoke("win_ev_devtools_opened",e).catch(n),Store:e=>c.ipcRenderer.invoke("Store",e).catch(n),flush:e=>c.ipcRenderer.invoke("flush",e).catch(n),Store_isEmpty:()=>c.ipcRenderer.invoke("Store_isEmpty").catch(n),Store_get:()=>c.ipcRenderer.invoke("Store_get").catch(n),zip:(e,i)=>c.ipcRenderer.invoke("zip",e,i).catch(n),unzip:(e,i)=>c.ipcRenderer.invoke("unzip",e,i).catch(n),isSimpleFullScreen:()=>c.ipcRenderer.invoke("isSimpleFullScreen").catch(n),setSimpleFullScreen:e=>c.ipcRenderer.invoke("setSimpleFullScreen",e).catch(n),window:(e,i,r,o,t)=>c.ipcRenderer.invoke("window",e,i,r,o,t).catch(n),on:(e,i)=>{switch(e){case"save_win_pos":c.ipcRenderer.on(e,(r,o,t)=>i(r,o,t));break;case"fire":c.ipcRenderer.on(e,(r,o)=>i(r,o));break}}};c.contextBridge.exposeInMainWorld("to_app",p);exports.hProc=p;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const c=require("electron"),n=console.error,p={getInfo:()=>c.ipcRenderer.invoke("getInfo").catch(n),existsSync:e=>c.ipcRenderer.invoke("existsSync",e).catch(n),copySync:(e,i)=>c.ipcRenderer.invoke("copySync",e,i).catch(n),removeSync:e=>c.ipcRenderer.invoke("removeSync",e).catch(n),ensureFileSync:e=>c.ipcRenderer.invoke("ensureFileSync",e).catch(n),readFileSync:e=>c.ipcRenderer.invoke("readFileSync",e).catch(n),readFile:(e,i)=>c.ipcRenderer.invoke("readFile",e,i).catch(n),writeFileSync:(e,i,r)=>c.ipcRenderer.invoke("writeFileSync",e,i,r).catch(n),appendFile:(e,i,r)=>c.ipcRenderer.invoke("appendFile",e,i,r).catch(n),win_close:()=>c.ipcRenderer.invoke("win_close").catch(n),win_setTitle:e=>c.ipcRenderer.invoke("win_setTitle",e).catch(n),showMessageBox:e=>c.ipcRenderer.invoke("showMessageBox",e).catch(n),capturePage:e=>c.ipcRenderer.invoke("capturePage",e).catch(n),navigate_to:e=>c.ipcRenderer.invoke("navigate_to",e).catch(n),openDevTools:()=>c.ipcRenderer.invoke("openDevTools").catch(n),win_ev_devtools_opened:e=>c.ipcRenderer.invoke("win_ev_devtools_opened",e).catch(n),Store:e=>c.ipcRenderer.invoke("Store",e).catch(n),flush:e=>c.ipcRenderer.invoke("flush",e).catch(n),Store_isEmpty:()=>c.ipcRenderer.invoke("Store_isEmpty").catch(n),Store_get:()=>c.ipcRenderer.invoke("Store_get").catch(n),zip:(e,i)=>c.ipcRenderer.invoke("zip",e,i).catch(n),unzip:(e,i)=>c.ipcRenderer.invoke("unzip",e,i).catch(n),isSimpleFullScreen:()=>c.ipcRenderer.invoke("isSimpleFullScreen").catch(n),setSimpleFullScreen:e=>c.ipcRenderer.invoke("setSimpleFullScreen",e).catch(n),window:(e,i,r,o,t)=>c.ipcRenderer.invoke("window",e,i,r,o,t).catch(n),on:(e,i)=>{switch(e){case"save_win_pos":c.ipcRenderer.on(e,(r,o,t)=>i(r,o,t));break;case"fire":c.ipcRenderer.on(e,(r,o)=>i(r,o));break}}};c.contextBridge.exposeInMainWorld("to_app",p);exports.hProc=p;
2
2
  //# sourceMappingURL=preload.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"preload.js","sources":["../src/preload.ts"],"sourcesContent":["/* ***** BEGIN LICENSE BLOCK *****\n\tCopyright (c) 2021-2022 Famibee (famibee.blog38.fc2.com)\n\n\tThis software is released under the MIT License.\n\thttp://opensource.org/licenses/mit-license.php\n** ***** END LICENSE BLOCK ***** */\n\nimport {contextBridge, ipcRenderer} from 'electron';\n\nexport\ttype\tHPROC\t= {\n\tgetInfo\t\t: ()=> Promise<HINFO>;\n\n\texistsSync\t: (path: string)=> Promise<boolean>;\n\tcopySync\t: (path_from: string, path_to: string)=> void;\n\tremoveSync\t: (path: string)=> Promise<void>;\n\tensureFileSync\t: (path: string)=> Promise<void>;\n\treadFileSync: (path: string)=> Promise<string>;\n\treadFile\t: (path: string, callback: (err: NodeJS.ErrnoException, data: Buffer)=> void)=> void;\n\twriteFileSync\t: (path: string, data: string | NodeJS.ArrayBufferView, o?: object)=> Promise<void>;\n\tappendFile\t\t: (path: string, data: string, callback: (err: Error)=> void)=> Promise<void>;\n\n\twindow\t: (centering: boolean, x: number, y: number, w: number, h: number)=> void;\n\tisSimpleFullScreen\t: ()=> Promise<boolean>;\n\tsetSimpleFullScreen\t: (b: boolean)=> Promise<void>;\n\twin_close\t\t: ()=> void;\n\twin_setTitle\t: (title: string)=> void;\n\n\tshowMessageBox\t: (o: Electron.MessageBoxOptions)=> Promise<Electron.MessageBoxReturnValue>;\n\n\tcapturePage\t: (fn: string)=> Promise<void>;\n\tnavigate_to\t: (url: string)=> void;\n\n\topenDevTools\t: ()=> void;\n\twin_ev_devtools_opened\t: (fnc: ()=> void)=> void;\n\n\tStore\t: (o: object)=> Promise<void>;\n\tflush\t: (o: object)=> Promise<void>;\n\tStore_isEmpty\t: ()=> Promise<boolean>;\n\tStore_get\t\t: ()=> Promise<any>;\n\n\tzip\t\t: (inp: string, out: string)=> void;\n\tunzip\t: (inp: string, out: string)=> void;\n\n\t// メイン → レンダラー\n\ton: (channel: string, callback: Function) => void;\n};\n\nexport\ttype\tHINFO\t= {\n\tgetAppPath\t: string;\n\tisPackaged\t: boolean;\n\tdownloads\t: string;\n\tuserData\t: string;\n\tgetVersion\t: string;\n\tenv\t\t\t: {[name: string]: any};\n\tplatform\t: string;\n\tarch\t\t: string;\n}\n\nconst fncE = console.error;\n\nexport const\thProc\t: HPROC\t= {\n\t// console.log は【アプリ】のターミナルに出る\n\tgetInfo\t\t: ()=> ipcRenderer.invoke('getInfo').catch(fncE),\n\n\texistsSync\t: path=> ipcRenderer.invoke('existsSync', path).catch(fncE),\n\tcopySync\t: (path_from, path_to)=>\n\t\tipcRenderer.invoke('copySync', path_from, path_to).catch(fncE),\n\tremoveSync\t: path=> ipcRenderer.invoke('removeSync', path).catch(fncE),\n\tensureFileSync\t: path=>\n\t\tipcRenderer.invoke('ensureFileSync', path).catch(fncE),\n\treadFileSync\t: path=>\n\t\tipcRenderer.invoke('readFileSync', path).catch(fncE),\n\treadFile\t: (path, callback)=>\n\t\tipcRenderer.invoke('readFile', path, callback).catch(fncE),\n\twriteFileSync\t: (path, data, o?)=>\n\t\tipcRenderer.invoke('writeFileSync', path, data, o).catch(fncE),\n\tappendFile\t\t: (path, data, callback)=>\n\t\tipcRenderer.invoke('appendFile', path, data, callback).catch(fncE),\n\n\twin_close\t: ()=> ipcRenderer.invoke('win_close').catch(fncE),\n\twin_setTitle\t: title=>\n\t\tipcRenderer.invoke('win_setTitle', title).catch(fncE),\n\n\tshowMessageBox\t: o=> ipcRenderer.invoke('showMessageBox', o).catch(fncE),\n\n\tcapturePage\t: fn=>\tipcRenderer.invoke('capturePage', fn).catch(fncE),\n\tnavigate_to\t: url=> ipcRenderer.invoke('navigate_to', url).catch(fncE),\n\n\topenDevTools\t: ()=> ipcRenderer.invoke('openDevTools').catch(fncE),\n\twin_ev_devtools_opened\t: fnc=>\n\t\tipcRenderer.invoke('win_ev_devtools_opened', fnc).catch(fncE),\n\n\tStore\t: o=> ipcRenderer.invoke('Store', o).catch(fncE),\n\tflush\t: o=> ipcRenderer.invoke('flush', o).catch(fncE),\n\tStore_isEmpty\t: ()=> ipcRenderer.invoke('Store_isEmpty').catch(fncE),\n\tStore_get\t: ()=> ipcRenderer.invoke('Store_get').catch(fncE),\n\n\tzip\t\t: (inp, out)=> ipcRenderer.invoke('zip', inp, out).catch(fncE),\n\tunzip\t: (inp, out)=> ipcRenderer.invoke('unzip', inp, out).catch(fncE),\n\n\tisSimpleFullScreen\t: ()=>\n\t\tipcRenderer.invoke('isSimpleFullScreen').catch(fncE),\n\tsetSimpleFullScreen\t: b=>\n\t\tipcRenderer.invoke('setSimpleFullScreen', b).catch(fncE),\n\twindow\t: (centering, x, y, w, h)=>\n\t\tipcRenderer.invoke('window', centering, x, y, w, h).catch(fncE),\n\n\n\t// メイン → レンダラー\n\ton\t: (ch, cb)=> {switch (ch) {\n\t\tcase 'save_win_pos':\n\t\t\tipcRenderer.on(ch, (e, x, y)=> cb(e, x, y));\tbreak;\n\t\tcase 'fire':\n\t\t\tipcRenderer.on(ch, (e, KEY)=> cb(e, KEY));\tbreak;\n\t\t//case 'call':\t// 実験・保留コード。セキュリティ懸念\n\t\t//\tipcRenderer.on(ch, (e, fn, label)=> cb(e, fn, label));\tbreak;\n\t}},\n\n};\ncontextBridge.exposeInMainWorld('to_app', hProc);\n"],"names":["ipcRenderer","contextBridge"],"mappings":"sIA0DA,KAAM,GAAO,QAAQ,MAER,EAAgB,CAE5B,QAAW,IAAKA,EAAAA,YAAY,OAAO,SAAS,EAAE,MAAM,CAAI,EAExD,WAAa,GAAOA,cAAY,OAAO,aAAc,CAAI,EAAE,MAAM,CAAI,EACrE,SAAW,CAAC,EAAW,IACtBA,cAAY,OAAO,WAAY,EAAW,CAAO,EAAE,MAAM,CAAI,EAC9D,WAAa,GAAOA,cAAY,OAAO,aAAc,CAAI,EAAE,MAAM,CAAI,EACrE,eAAiB,GAChBA,cAAY,OAAO,iBAAkB,CAAI,EAAE,MAAM,CAAI,EACtD,aAAe,GACdA,cAAY,OAAO,eAAgB,CAAI,EAAE,MAAM,CAAI,EACpD,SAAW,CAAC,EAAM,IACjBA,cAAY,OAAO,WAAY,EAAM,CAAQ,EAAE,MAAM,CAAI,EAC1D,cAAgB,CAAC,EAAM,EAAM,IAC5BA,EAAAA,YAAY,OAAO,gBAAiB,EAAM,EAAM,CAAC,EAAE,MAAM,CAAI,EAC9D,WAAc,CAAC,EAAM,EAAM,IAC1BA,EAAAA,YAAY,OAAO,aAAc,EAAM,EAAM,CAAQ,EAAE,MAAM,CAAI,EAElE,UAAY,IAAKA,EAAAA,YAAY,OAAO,WAAW,EAAE,MAAM,CAAI,EAC3D,aAAe,GACdA,cAAY,OAAO,eAAgB,CAAK,EAAE,MAAM,CAAI,EAErD,eAAiB,GAAIA,cAAY,OAAO,iBAAkB,CAAC,EAAE,MAAM,CAAI,EAEvE,YAAc,GAAKA,cAAY,OAAO,cAAe,CAAE,EAAE,MAAM,CAAI,EACnE,YAAc,GAAMA,cAAY,OAAO,cAAe,CAAG,EAAE,MAAM,CAAI,EAErE,aAAe,IAAKA,EAAAA,YAAY,OAAO,cAAc,EAAE,MAAM,CAAI,EACjE,uBAAyB,GACxBA,cAAY,OAAO,yBAA0B,CAAG,EAAE,MAAM,CAAI,EAE7D,MAAQ,GAAIA,cAAY,OAAO,QAAS,CAAC,EAAE,MAAM,CAAI,EACrD,MAAQ,GAAIA,cAAY,OAAO,QAAS,CAAC,EAAE,MAAM,CAAI,EACrD,cAAgB,IAAKA,EAAAA,YAAY,OAAO,eAAe,EAAE,MAAM,CAAI,EACnE,UAAY,IAAKA,EAAAA,YAAY,OAAO,WAAW,EAAE,MAAM,CAAI,EAE3D,IAAO,CAAC,EAAK,IAAOA,cAAY,OAAO,MAAO,EAAK,CAAG,EAAE,MAAM,CAAI,EAClE,MAAQ,CAAC,EAAK,IAAOA,cAAY,OAAO,QAAS,EAAK,CAAG,EAAE,MAAM,CAAI,EAErE,mBAAqB,IACpBA,EAAAA,YAAY,OAAO,oBAAoB,EAAE,MAAM,CAAI,EACpD,oBAAsB,GACrBA,cAAY,OAAO,sBAAuB,CAAC,EAAE,MAAM,CAAI,EACxD,OAAS,CAAC,EAAW,EAAG,EAAG,EAAG,IAC7BA,cAAY,OAAO,SAAU,EAAW,EAAG,EAAG,EAAG,CAAC,EAAE,MAAM,CAAI,EAI/D,GAAK,CAAC,EAAI,IAAM,CAAS,OAAA,OACnB,eACQA,EAAAA,YAAA,GAAG,EAAI,CAAC,EAAG,EAAG,IAAK,EAAG,EAAG,EAAG,CAAC,CAAC,EAAG,UACzC,OACQA,cAAA,GAAG,EAAI,CAAC,EAAG,IAAO,EAAG,EAAG,CAAG,CAAC,EAAG,MAG5C,CAEF,EACAC,EAAAA,cAAc,kBAAkB,SAAU,CAAK"}
1
+ {"version":3,"file":"preload.js","sources":["../src/preload.ts"],"sourcesContent":["/* ***** BEGIN LICENSE BLOCK *****\n\tCopyright (c) 2021-2022 Famibee (famibee.blog38.fc2.com)\n\n\tThis software is released under the MIT License.\n\thttp://opensource.org/licenses/mit-license.php\n** ***** END LICENSE BLOCK ***** */\n\nimport {contextBridge, ipcRenderer} from 'electron';\n\nexport\ttype\tHPROC\t= {\n\tgetInfo\t\t: ()=> Promise<HINFO>;\n\n\texistsSync\t: (path: string)=> Promise<boolean>;\n\tcopySync\t: (path_from: string, path_to: string)=> void;\n\tremoveSync\t: (path: string)=> Promise<void>;\n\tensureFileSync\t: (path: string)=> Promise<void>;\n\treadFileSync: (path: string)=> Promise<string>;\n\treadFile\t: (path: string, callback: (err: NodeJS.ErrnoException, data: Buffer)=> void)=> void;\n\twriteFileSync\t: (path: string, data: string | NodeJS.ArrayBufferView, o?: object)=> Promise<void>;\n\tappendFile\t\t: (path: string, data: string, callback: (err: Error)=> void)=> Promise<void>;\n\n\twindow\t: (centering: boolean, x: number, y: number, w: number, h: number)=> void;\n\tisSimpleFullScreen\t: ()=> Promise<boolean>;\n\tsetSimpleFullScreen\t: (b: boolean)=> Promise<void>;\n\twin_close\t\t: ()=> void;\n\twin_setTitle\t: (title: string)=> void;\n\n\tshowMessageBox\t: (o: Electron.MessageBoxOptions)=> Promise<Electron.MessageBoxReturnValue>;\n\n\tcapturePage\t: (fn: string)=> Promise<void>;\n\tnavigate_to\t: (url: string)=> void;\n\n\topenDevTools\t: ()=> void;\n\twin_ev_devtools_opened\t: (fnc: ()=> void)=> void;\n\n\tStore\t: (o: object)=> Promise<void>;\n\tflush\t: (o: object)=> Promise<void>;\n\tStore_isEmpty\t: ()=> Promise<boolean>;\n\tStore_get\t\t: ()=> Promise<any>;\n\n\tzip\t\t: (inp: string, out: string)=> void;\n\tunzip\t: (inp: string, out: string)=> void;\n\n\t// メイン → レンダラー\n\ton: (channel: string, callback: Function) => void;\n};\n\nexport\ttype\tHINFO\t= {\n\tgetAppPath\t: string;\n\tisPackaged\t: boolean;\n\tdownloads\t: string;\n\tuserData\t: string;\n\tgetVersion\t: string;\n\tenv\t\t\t: {[name: string]: any};\n\tplatform\t: string;\n\tarch\t\t: string;\n}\n\nconst fncE = console.error;\n\nexport const\thProc\t: HPROC\t= {\n\t// console.log は【アプリ】のターミナルに出る\n\tgetInfo\t\t: ()=> ipcRenderer.invoke('getInfo').catch(fncE),\n\n\texistsSync\t: path=> ipcRenderer.invoke('existsSync', path).catch(fncE),\n\tcopySync\t: (path_from, path_to)=>\n\t\tipcRenderer.invoke('copySync', path_from, path_to).catch(fncE),\n\tremoveSync\t: path=> ipcRenderer.invoke('removeSync', path).catch(fncE),\n\tensureFileSync\t: path=>\n\t\tipcRenderer.invoke('ensureFileSync', path).catch(fncE),\n\treadFileSync\t: path=>\n\t\tipcRenderer.invoke('readFileSync', path).catch(fncE),\n\treadFile\t: (path, callback)=>\n\t\tipcRenderer.invoke('readFile', path, callback).catch(fncE),\n\twriteFileSync\t: (path, data, o?)=>\n\t\tipcRenderer.invoke('writeFileSync', path, data, o).catch(fncE),\n\tappendFile\t\t: (path, data, callback)=>\n\t\tipcRenderer.invoke('appendFile', path, data, callback).catch(fncE),\n\n\twin_close\t: ()=> ipcRenderer.invoke('win_close').catch(fncE),\n\twin_setTitle\t: title=>\n\t\tipcRenderer.invoke('win_setTitle', title).catch(fncE),\n\n\tshowMessageBox\t: o=> ipcRenderer.invoke('showMessageBox', o).catch(fncE),\n\n\tcapturePage\t: fn=>\tipcRenderer.invoke('capturePage', fn).catch(fncE),\n\tnavigate_to\t: url=> ipcRenderer.invoke('navigate_to', url).catch(fncE),\n\n\topenDevTools\t: ()=> ipcRenderer.invoke('openDevTools').catch(fncE),\n\twin_ev_devtools_opened\t: fnc=>\n\t\tipcRenderer.invoke('win_ev_devtools_opened', fnc).catch(fncE),\n\n\tStore\t: o=> ipcRenderer.invoke('Store', o).catch(fncE),\n\tflush\t: o=> ipcRenderer.invoke('flush', o).catch(fncE),\n\tStore_isEmpty\t: ()=> ipcRenderer.invoke('Store_isEmpty').catch(fncE),\n\tStore_get\t: ()=> ipcRenderer.invoke('Store_get').catch(fncE),\n\n\tzip\t\t: (inp, out)=> ipcRenderer.invoke('zip', inp, out).catch(fncE),\n\tunzip\t: (inp, out)=> ipcRenderer.invoke('unzip', inp, out).catch(fncE),\n\n\tisSimpleFullScreen\t: ()=>\n\t\tipcRenderer.invoke('isSimpleFullScreen').catch(fncE),\n\tsetSimpleFullScreen\t: b=>\n\t\tipcRenderer.invoke('setSimpleFullScreen', b).catch(fncE),\n\twindow\t: (centering, x, y, w, h)=>\n\t\tipcRenderer.invoke('window', centering, x, y, w, h).catch(fncE),\n\n\n\t// メイン → レンダラー\n\ton\t: (ch, cb)=> {switch (ch) {\n\t\tcase 'save_win_pos':\n\t\t\tipcRenderer.on(ch, (e, x, y)=> cb(e, x, y));\tbreak;\n\t\tcase 'fire':\n\t\t\tipcRenderer.on(ch, (e, KEY)=> cb(e, KEY));\tbreak;\n\t\t//case 'call':\t// 実験・保留コード。セキュリティ懸念\n\t\t//\tipcRenderer.on(ch, (e, fn, label)=> cb(e, fn, label));\tbreak;\n\t}},\n\n};\ncontextBridge.exposeInMainWorld('to_app', hProc);\n"],"names":["fncE","hProc","ipcRenderer","path","path_from","path_to","callback","data","o","title","fn","url","fnc","inp","out","b","centering","x","y","w","h","ch","cb","e","KEY","contextBridge"],"mappings":"wIA0DMA,EAAO,QAAQ,MAERC,EAAgB,CAE5B,QAAW,IAAKC,EAAAA,YAAY,OAAO,SAAS,EAAE,MAAMF,CAAI,EAExD,cAAoBE,cAAY,OAAO,aAAcC,CAAI,EAAE,MAAMH,CAAI,EACrE,SAAW,CAACI,EAAWC,IACtBH,cAAY,OAAO,WAAYE,EAAWC,CAAO,EAAE,MAAML,CAAI,EAC9D,cAAoBE,cAAY,OAAO,aAAcC,CAAI,EAAE,MAAMH,CAAI,EACrE,kBACCE,cAAY,OAAO,iBAAkBC,CAAI,EAAE,MAAMH,CAAI,EACtD,gBACCE,cAAY,OAAO,eAAgBC,CAAI,EAAE,MAAMH,CAAI,EACpD,SAAW,CAACG,EAAMG,IACjBJ,cAAY,OAAO,WAAYC,EAAMG,CAAQ,EAAE,MAAMN,CAAI,EAC1D,cAAgB,CAACG,EAAMI,EAAMC,IAC5BN,EAAAA,YAAY,OAAO,gBAAiBC,EAAMI,EAAMC,CAAC,EAAE,MAAMR,CAAI,EAC9D,WAAc,CAACG,EAAMI,EAAMD,IAC1BJ,EAAAA,YAAY,OAAO,aAAcC,EAAMI,EAAMD,CAAQ,EAAE,MAAMN,CAAI,EAElE,UAAY,IAAKE,EAAAA,YAAY,OAAO,WAAW,EAAE,MAAMF,CAAI,EAC3D,gBACCE,cAAY,OAAO,eAAgBO,CAAK,EAAE,MAAMT,CAAI,EAErD,kBAAqBE,cAAY,OAAO,iBAAkBM,CAAC,EAAE,MAAMR,CAAI,EAEvE,eAAmBE,cAAY,OAAO,cAAeQ,CAAE,EAAE,MAAMV,CAAI,EACnE,eAAoBE,cAAY,OAAO,cAAeS,CAAG,EAAE,MAAMX,CAAI,EAErE,aAAe,IAAKE,EAAAA,YAAY,OAAO,cAAc,EAAE,MAAMF,CAAI,EACjE,0BACCE,cAAY,OAAO,yBAA0BU,CAAG,EAAE,MAAMZ,CAAI,EAE7D,SAAYE,cAAY,OAAO,QAASM,CAAC,EAAE,MAAMR,CAAI,EACrD,SAAYE,cAAY,OAAO,QAASM,CAAC,EAAE,MAAMR,CAAI,EACrD,cAAgB,IAAKE,EAAAA,YAAY,OAAO,eAAe,EAAE,MAAMF,CAAI,EACnE,UAAY,IAAKE,EAAAA,YAAY,OAAO,WAAW,EAAE,MAAMF,CAAI,EAE3D,IAAO,CAACa,EAAKC,IAAOZ,cAAY,OAAO,MAAOW,EAAKC,CAAG,EAAE,MAAMd,CAAI,EAClE,MAAQ,CAACa,EAAKC,IAAOZ,cAAY,OAAO,QAASW,EAAKC,CAAG,EAAE,MAAMd,CAAI,EAErE,mBAAqB,IACpBE,EAAAA,YAAY,OAAO,oBAAoB,EAAE,MAAMF,CAAI,EACpD,uBACCE,cAAY,OAAO,sBAAuBa,CAAC,EAAE,MAAMf,CAAI,EACxD,OAAS,CAACgB,EAAWC,EAAGC,EAAGC,EAAGC,IAC7BlB,cAAY,OAAO,SAAUc,EAAWC,EAAGC,EAAGC,EAAGC,CAAC,EAAE,MAAMpB,CAAI,EAI/D,GAAK,CAACqB,EAAIC,IAAM,CAAS,OAAAD,OACnB,eACQnB,EAAAA,YAAA,GAAGmB,EAAI,CAACE,EAAGN,EAAGC,IAAKI,EAAGC,EAAGN,EAAGC,CAAC,CAAC,EAAG,UACzC,OACQhB,cAAA,GAAGmB,EAAI,CAACE,EAAGC,IAAOF,EAAGC,EAAGC,CAAG,CAAC,EAAG,MAG5C,CAEF,EACAC,EAAAA,cAAc,kBAAkB,SAAUxB,CAAK"}
@@ -1 +1 @@
1
- {"version":3,"file":"LayerMng.d.ts","sourceRoot":"","sources":["LayerMng.ts"],"names":[],"mappings":"AAOA,OAAO,EAA2B,OAAO,EAAkG,MAAM,UAAU,CAAC;AAE5J,OAAO,EAAC,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,MAAM,EAAQ,OAAO,EAAE,WAAW,EAAC,MAAM,gBAAgB,CAAC;AAC3F,OAAO,EAAC,KAAK,EAAC,MAAM,SAAS,CAAC;AAG9B,OAAO,EAAC,QAAQ,EAAC,MAAM,YAAY,CAAC;AAGpC,OAAO,EAAC,MAAM,EAAC,MAAM,UAAU,CAAC;AAChC,OAAO,EAAC,cAAc,EAAC,MAAM,kBAAkB,CAAC;AAChD,OAAO,EAAC,OAAO,EAAC,MAAM,WAAW,CAAC;AAGlC,OAAO,EAAC,QAAQ,EAAC,MAAM,YAAY,CAAC;AACpC,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAGxC,OAAO,EAAY,WAAW,EAAsF,MAAM,SAAS,CAAC;AAEpI,MAAM,WAAW,eAAe;IAAG,CAAC,GAAG,EAAG,UAAU,GAAG,IAAI,CAAC;CAAE;AAE9D,MAAM,WAAW,KAAK;IAAE,CAAC,IAAI,EAAE,MAAM,GAAG,KAAK,CAAA;CAAC;AAE9C,qBAAa,QAAS,YAAW,OAAO;;IAQ3B,OAAO,CAAC,QAAQ,CAAC,GAAG;IAAU,OAAO,CAAC,QAAQ,CAAC,IAAI;IAAS,OAAO,CAAC,QAAQ,CAAC,OAAO;IAAe,OAAO,CAAC,QAAQ,CAAC,GAAG;IAAa,OAAO,CAAC,QAAQ,CAAC,IAAI;IAAS,OAAO,CAAC,QAAQ,CAAC,MAAM;IAAkB,OAAO,CAAC,QAAQ,CAAC,GAAG;IAAW,QAAQ,CAAC,MAAM,EAAE,QAAQ;IAAE,QAAQ,CAAC,SAAS,EAAE,aAAa;IAAE,QAAQ,CAAC,MAAM,EAAE,WAAW;gBAAnT,GAAG,EAAE,MAAM,EAAmB,IAAI,EAAE,KAAK,EAAmB,OAAO,EAAE,WAAW,EAAmB,GAAG,EAAE,SAAS,EAAmB,IAAI,EAAE,KAAK,EAAmB,MAAM,EAAE,cAAc,EAAmB,GAAG,EAAE,OAAO,EAAW,MAAM,EAAE,QAAQ,EAAW,SAAS,EAAE,aAAa,EAAW,MAAM,EAAE,WAAW;IAyJhV,OAAO,CAAC,eAAe;IAoCvB,cAAc,OAAQ,MAAM,aAAoC;IAGhE,KAAK,CAAC,OAAO,EAAE,OAAO,EAAE,QAAQ,SAAM;IAgBtC,SAAS,CAAC,MAAM,EAAE,OAAO;IAMzB,cAAc;IACd,OAAO;IAaP,SAAS;IAgBT,KAAK,aAAW;IAChB,SAAS,aAAW;IACpB,SAAS,aAAW;IACpB,UAAU;IAOV,WAAW;IAulBX,MAAM,KAAK,UAAU,WAAiC;IACtD,MAAM,KAAK,UAAU,CAAC,CAAC,QAAA,EAA6B;IAkCpD,eAAe,IAAI,IAAI;IAwBvB,IAAI,wBAAwB,IAAI,QAAQ,CAGvC;IACD,IAAI,iBAAiB,IAAI,QAAQ,GAAG,SAAS,CAI5C;IAeD,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,SAAS,UAAQ;IA6JtC,MAAM,IAAI,GAAG;IAYb,QAAQ,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAK,IAAI,GAAG,IAAI;CAmCnD"}
1
+ {"version":3,"file":"LayerMng.d.ts","sourceRoot":"","sources":["LayerMng.ts"],"names":[],"mappings":"AAOA,OAAO,EAA2B,OAAO,EAAkG,MAAM,UAAU,CAAC;AAE5J,OAAO,EAAC,KAAK,EAAE,SAAS,EAAE,KAAK,EAAE,MAAM,EAAQ,OAAO,EAAE,WAAW,EAAC,MAAM,gBAAgB,CAAC;AAC3F,OAAO,EAAC,KAAK,EAAC,MAAM,SAAS,CAAC;AAG9B,OAAO,EAAC,QAAQ,EAAC,MAAM,YAAY,CAAC;AAGpC,OAAO,EAAC,MAAM,EAAC,MAAM,UAAU,CAAC;AAChC,OAAO,EAAC,cAAc,EAAC,MAAM,kBAAkB,CAAC;AAChD,OAAO,EAAC,OAAO,EAAC,MAAM,WAAW,CAAC;AAGlC,OAAO,EAAC,QAAQ,EAAC,MAAM,YAAY,CAAC;AACpC,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAGxC,OAAO,EAAY,WAAW,EAAsF,MAAM,SAAS,CAAC;AAEpI,MAAM,WAAW,eAAe;IAAG,CAAC,GAAG,EAAG,UAAU,GAAG,IAAI,CAAC;CAAE;AAE9D,MAAM,WAAW,KAAK;IAAE,CAAC,IAAI,EAAE,MAAM,GAAG,KAAK,CAAA;CAAC;AAE9C,qBAAa,QAAS,YAAW,OAAO;;IAQ3B,OAAO,CAAC,QAAQ,CAAC,GAAG;IAAU,OAAO,CAAC,QAAQ,CAAC,IAAI;IAAS,OAAO,CAAC,QAAQ,CAAC,OAAO;IAAe,OAAO,CAAC,QAAQ,CAAC,GAAG;IAAa,OAAO,CAAC,QAAQ,CAAC,IAAI;IAAS,OAAO,CAAC,QAAQ,CAAC,MAAM;IAAkB,OAAO,CAAC,QAAQ,CAAC,GAAG;IAAW,QAAQ,CAAC,MAAM,EAAE,QAAQ;IAAE,QAAQ,CAAC,SAAS,EAAE,aAAa;IAAE,QAAQ,CAAC,MAAM,EAAE,WAAW;gBAAnT,GAAG,EAAE,MAAM,EAAmB,IAAI,EAAE,KAAK,EAAmB,OAAO,EAAE,WAAW,EAAmB,GAAG,EAAE,SAAS,EAAmB,IAAI,EAAE,KAAK,EAAmB,MAAM,EAAE,cAAc,EAAmB,GAAG,EAAE,OAAO,EAAW,MAAM,EAAE,QAAQ,EAAW,SAAS,EAAE,aAAa,EAAW,MAAM,EAAE,WAAW;IAyJhV,OAAO,CAAC,eAAe;IAoCvB,cAAc,OAAQ,MAAM,aAAoC;IAGhE,KAAK,CAAC,OAAO,EAAE,OAAO,EAAE,QAAQ,SAAM;IAgBtC,SAAS,CAAC,MAAM,EAAE,OAAO;IAMzB,cAAc;IACd,OAAO;IAaP,SAAS;IAgBT,KAAK,aAAW;IAChB,SAAS,aAAW;IACpB,SAAS,aAAW;IACpB,UAAU;IAOV,WAAW;IAulBX,MAAM,KAAK,UAAU,WAAiC;IACtD,MAAM,KAAK,UAAU,CAAC,CAAC,QAAA,EAA6B;IAkCpD,eAAe,IAAI,IAAI;IAwBvB,IAAI,wBAAwB,IAAI,QAAQ,CAGvC;IACD,IAAI,iBAAiB,IAAI,QAAQ,GAAG,SAAS,CAI5C;IAeD,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,SAAS,UAAQ;IA8JtC,MAAM,IAAI,GAAG;IAYb,QAAQ,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAK,IAAI,GAAG,IAAI;CAmCnD"}
@@ -1 +1 @@
1
- {"version":3,"file":"TxtLayer.d.ts","sourceRoot":"","sources":["TxtLayer.ts"],"names":[],"mappings":"AAOA,OAAO,EAAC,KAAK,EAAC,MAAM,SAAS,CAAC;AAC9B,OAAO,EAAe,OAAO,EAAgE,MAAM,UAAU,CAAC;AAC9G,OAAO,EAAC,SAAS,EAAE,KAAK,EAAE,IAAI,EAAU,KAAK,EAAC,MAAM,gBAAgB,CAAC;AAErE,OAAO,EAAC,MAAM,EAAC,MAAM,UAAU,CAAC;AAIhC,OAAO,EAAW,eAAe,EAAC,MAAM,YAAY,CAAC;AACrD,OAAO,EAAC,OAAO,EAAC,MAAM,WAAW,CAAC;AAElC,OAAO,EAA6C,QAAQ,EAAE,WAAW,EAAC,MAAM,SAAS,CAAC;AAE1F,qBAAa,QAAS,SAAQ,KAAK;;IAKlC,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,SAAS,EAAE,OAAO,EAAE,CAAC,GAAG,EAAE,MAAM,KAAI,IAAI,EAAE,UAAU,EAAE,CAAC,EAAE,EAAE,QAAQ,KAAI,OAAO,EAAE,OAAO,EAAE,WAAW,GAAG,IAAI;IAyHtJ,MAAM,CAAC,SAAS,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,OAAO;;IA8DlD,OAAO;IAMhB,MAAM,CAAC,OAAO;IAMd,IAAa,IAAI,CAAC,EAAE,EAAE,MAAM,EAAyC;IACrE,IAAa,IAAI,IADK,MAAM,CACY;IAG/B,SAAS;IACT,iBAAiB;IAEjB,GAAG,CAAC,IAAI,EAAE,IAAI;IAqCvB,IAAa,KAAK,WAA8B;IAChD,IAAa,MAAM,WAA+B;IA4ElD,YAAY,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI;IA+CnC,MAAM,CAAC,QAAQ,CAAC,KAAK,EAAE,OAAO;IAQ9B,KAAK,UAAS;IAEd,OAAO,CAAC,eAAe;IAqDvB,KAAK,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAwOzB,QAAQ,CAAC,KAAK,gBAGb;IAED,SAAS,IAAI,IAAI;IAUjB,IAAI,QAAQ,WAA8C;IAE1D,IAAI,OAAO,YAA0C;IACrD,IAAI,OAAO,CAAC,CAAC,SAAA,EAAsC;IAEnD,QAAQ,CAAC,SAAS,SAAU,IAAI,mBAO7B;IACH,QAAQ,IAAI,OAAO;IAMV,QAAQ,CAAC,IAAI,EAAE,IAAI,GAAG,IAAI;IAOnC,SAAkB,MAAM,YAkBrB;IACM,QAAQ,CAAC,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,GAAG,IAAI;IA0BhD,QAAQ,CAAC,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,MAAK,IAAI;IAIrC,YAAY;IAEZ,cAAc,CAAC,GAAG,EAAE,eAAe;IAInC,sBAAsB,CAAC,GAAG,EAAE,eAAe;IAK3C,cAAc;IACd,sBAAsB;IAItB,IAAI,IAAI,MAAM;CAoBvB"}
1
+ {"version":3,"file":"TxtLayer.d.ts","sourceRoot":"","sources":["TxtLayer.ts"],"names":[],"mappings":"AAOA,OAAO,EAAC,KAAK,EAAC,MAAM,SAAS,CAAC;AAC9B,OAAO,EAAe,OAAO,EAAgE,MAAM,UAAU,CAAC;AAC9G,OAAO,EAAC,SAAS,EAAE,KAAK,EAAE,IAAI,EAAU,KAAK,EAAC,MAAM,gBAAgB,CAAC;AAErE,OAAO,EAAC,MAAM,EAAC,MAAM,UAAU,CAAC;AAIhC,OAAO,EAAW,eAAe,EAAC,MAAM,YAAY,CAAC;AACrD,OAAO,EAAC,OAAO,EAAC,MAAM,WAAW,CAAC;AAElC,OAAO,EAA6C,QAAQ,EAAE,WAAW,EAAC,MAAM,SAAS,CAAC;AAE1F,qBAAa,QAAS,SAAQ,KAAK;;IAKlC,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,SAAS,EAAE,OAAO,EAAE,CAAC,GAAG,EAAE,MAAM,KAAI,IAAI,EAAE,UAAU,EAAE,CAAC,EAAE,EAAE,QAAQ,KAAI,OAAO,EAAE,OAAO,EAAE,WAAW,GAAG,IAAI;IAyHtJ,MAAM,CAAC,SAAS,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,GAAG,EAAE,OAAO;;IA8DlD,OAAO;IAMhB,MAAM,CAAC,OAAO;IAMd,IAAa,IAAI,CAAC,EAAE,EAAE,MAAM,EAAyC;IACrE,IAAa,IAAI,IADK,MAAM,CACY;IAG/B,SAAS;IACT,iBAAiB;IAEjB,GAAG,CAAC,IAAI,EAAE,IAAI;IAqCvB,IAAa,KAAK,WAA8B;IAChD,IAAa,MAAM,WAA+B;IA4ElD,YAAY,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI;IA+CnC,MAAM,CAAC,QAAQ,CAAC,KAAK,EAAE,OAAO;IAQ9B,KAAK,UAAS;IAEd,OAAO,CAAC,eAAe;IAqDvB,KAAK,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAsOzB,QAAQ,CAAC,KAAK,gBAGb;IAED,SAAS,IAAI,IAAI;IAUjB,IAAI,QAAQ,WAA8C;IAE1D,IAAI,OAAO,YAA0C;IACrD,IAAI,OAAO,CAAC,CAAC,SAAA,EAAsC;IAEnD,QAAQ,CAAC,SAAS,SAAU,IAAI,mBAO7B;IACH,QAAQ,IAAI,OAAO;IAMV,QAAQ,CAAC,IAAI,EAAE,IAAI,GAAG,IAAI;IAOnC,SAAkB,MAAM,YAkBrB;IACM,QAAQ,CAAC,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,GAAG,IAAI;IA0BhD,QAAQ,CAAC,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,MAAK,IAAI;IAIrC,YAAY;IAEZ,cAAc,CAAC,GAAG,EAAE,eAAe;IAInC,sBAAsB,CAAC,GAAG,EAAE,eAAe;IAK3C,cAAc;IACd,sBAAsB;IAItB,IAAI,IAAI,MAAM;CAoBvB"}