first commit
This commit is contained in:
1
dist/core/model/.pydio
vendored
Normal file
1
dist/core/model/.pydio
vendored
Normal file
@@ -0,0 +1 @@
|
||||
94e8d3d3-68ff-41a3-93a5-e54339a2878a
|
||||
27
dist/core/model/Ioc.model.js
vendored
Normal file
27
dist/core/model/Ioc.model.js
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
"use strict";
|
||||
var __spreadArrays = (this && this.__spreadArrays) || function () {
|
||||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
||||
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
||||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
||||
r[k] = a[j];
|
||||
return r;
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var IocModel = /** @class */ (function () {
|
||||
function IocModel() {
|
||||
this._classPool = [];
|
||||
}
|
||||
Object.defineProperty(IocModel.prototype, "classPool", {
|
||||
get: function () {
|
||||
return this._classPool;
|
||||
},
|
||||
set: function (value) {
|
||||
this._classPool = __spreadArrays(value, this._classPool);
|
||||
},
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
return IocModel;
|
||||
}());
|
||||
exports.default = new IocModel();
|
||||
//# sourceMappingURL=Ioc.model.js.map
|
||||
1
dist/core/model/Ioc.model.js.map
vendored
Normal file
1
dist/core/model/Ioc.model.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"Ioc.model.js","sourceRoot":"","sources":["../../../src/core/model/Ioc.model.ts"],"names":[],"mappings":";;;;;;;;;AAAA;IAAA;QACY,eAAU,GAAyC,EAAE,CAAC;IASlE,CAAC;IAPG,sBAAI,+BAAS;aAAb;YACI,OAAO,IAAI,CAAC,UAAU,CAAC;QAC3B,CAAC;aAED,UAAc,KAAyC;YACnD,IAAI,CAAC,UAAU,kBAAO,KAAK,EAAK,IAAI,CAAC,UAAU,CAAC,CAAA;QACpD,CAAC;;;OAJA;IAKL,eAAC;AAAD,CAAC,AAVD,IAUC;AAED,kBAAe,IAAI,QAAQ,EAAE,CAAC"}
|
||||
1
dist/core/model/Ipc.js
vendored
Normal file
1
dist/core/model/Ipc.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
"use strict";
|
||||
14
dist/core/model/Ipc.model.js
vendored
Normal file
14
dist/core/model/Ipc.model.js
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
class IpcModel {
|
||||
constructor() {
|
||||
this._saveIpcFunction = {};
|
||||
}
|
||||
get saveIpcFunction() {
|
||||
return this._saveIpcFunction;
|
||||
}
|
||||
set saveIpcFunction(value) {
|
||||
this._saveIpcFunction = value;
|
||||
}
|
||||
}
|
||||
exports.default = new IpcModel();
|
||||
71
dist/core/model/Windows.model.js
vendored
Normal file
71
dist/core/model/Windows.model.js
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var Windows = /** @class */ (function () {
|
||||
function Windows() {
|
||||
}
|
||||
Object.defineProperty(Windows.prototype, "CurrentWindowNew", {
|
||||
get: function () {
|
||||
return this._CurrentWindowNew;
|
||||
},
|
||||
set: function (value) {
|
||||
this._CurrentWindowNew = value;
|
||||
},
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
Object.defineProperty(Windows.prototype, "CurrentBrowserWindow", {
|
||||
get: function () {
|
||||
return this._CurrentBrowserWindow;
|
||||
},
|
||||
set: function (value) {
|
||||
this._CurrentBrowserWindow = value;
|
||||
},
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
Object.defineProperty(Windows.prototype, "HomeBrowserWindow", {
|
||||
get: function () {
|
||||
return this._HomeBrowserWindow;
|
||||
},
|
||||
set: function (value) {
|
||||
this.CurrentBrowserWindow = value;
|
||||
this._HomeBrowserWindow = value;
|
||||
},
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
Object.defineProperty(Windows.prototype, "SettingBrowserWindow", {
|
||||
get: function () {
|
||||
return this._SettingBrowserWindow;
|
||||
},
|
||||
set: function (value) {
|
||||
this.CurrentBrowserWindow = value;
|
||||
this._SettingBrowserWindow = value;
|
||||
},
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
Object.defineProperty(Windows.prototype, "HomeBrowserWindowWebContents", {
|
||||
get: function () {
|
||||
return this._HomeBrowserWindowWebContents;
|
||||
},
|
||||
set: function (value) {
|
||||
this._HomeBrowserWindowWebContents = value;
|
||||
},
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
Object.defineProperty(Windows.prototype, "SettingBrowserWindowWebContents", {
|
||||
get: function () {
|
||||
return this._SettingBrowserWindowWebContents;
|
||||
},
|
||||
set: function (value) {
|
||||
this._SettingBrowserWindowWebContents = value;
|
||||
},
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
return Windows;
|
||||
}());
|
||||
exports.default = new Windows();
|
||||
//# sourceMappingURL=Windows.model.js.map
|
||||
1
dist/core/model/Windows.model.js.map
vendored
Normal file
1
dist/core/model/Windows.model.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"Windows.model.js","sourceRoot":"","sources":["../../../src/core/model/Windows.model.ts"],"names":[],"mappings":";;AAEA;IAAA;IA4DA,CAAC;IAjDG,sBAAI,qCAAgB;aAApB;YACI,OAAO,IAAI,CAAC,iBAAiB,CAAC;QAClC,CAAC;aAED,UAAqB,KAAU;YAC3B,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;QACnC,CAAC;;;OAJA;IAMD,sBAAI,yCAAoB;aAAxB;YACI,OAAO,IAAI,CAAC,qBAAqB,CAAC;QACtC,CAAC;aAED,UAAyB,KAA6B;YAClD,IAAI,CAAC,qBAAqB,GAAG,KAAK,CAAC;QACvC,CAAC;;;OAJA;IAMD,sBAAI,sCAAiB;aAArB;YACI,OAAO,IAAI,CAAC,kBAAkB,CAAC;QACnC,CAAC;aAED,UAAsB,KAAoB;YACtC,IAAI,CAAC,oBAAoB,GAAG,KAAK,CAAC;YAClC,IAAI,CAAC,kBAAkB,GAAG,KAAK,CAAC;QACpC,CAAC;;;OALA;IAOD,sBAAI,yCAAoB;aAAxB;YACI,OAAO,IAAI,CAAC,qBAAqB,CAAC;QACtC,CAAC;aAED,UAAyB,KAAoB;YACzC,IAAI,CAAC,oBAAoB,GAAG,KAAK,CAAC;YAClC,IAAI,CAAC,qBAAqB,GAAG,KAAK,CAAC;QACvC,CAAC;;;OALA;IAOD,sBAAI,iDAA4B;aAAhC;YACI,OAAO,IAAI,CAAC,6BAA6B,CAAC;QAC9C,CAAC;aAED,UAAiC,KAAyB;YACtD,IAAI,CAAC,6BAA6B,GAAG,KAAK,CAAC;QAC/C,CAAC;;;OAJA;IAMD,sBAAI,oDAA+B;aAAnC;YACI,OAAO,IAAI,CAAC,gCAAgC,CAAC;QACjD,CAAC;aAED,UAAoC,KAAyB;YACzD,IAAI,CAAC,gCAAgC,GAAG,KAAK,CAAC;QAClD,CAAC;;;OAJA;IAKL,cAAC;AAAD,CAAC,AA5DD,IA4DC;AAED,kBAAe,IAAI,OAAO,EAAE,CAAC"}
|
||||
Reference in New Issue
Block a user