@flashist/appframework 0.0.39 → 0.0.41
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PagesView } from "../../pages/views/PagesView";
|
|
2
|
-
import {
|
|
3
|
-
export declare class AppMainContainer extends
|
|
2
|
+
import { BaseAppView } from "../../base/views/BaseAppView";
|
|
3
|
+
export declare class AppMainContainer extends BaseAppView {
|
|
4
4
|
protected pagesView: PagesView;
|
|
5
5
|
protected construction(...args: any[]): void;
|
|
6
6
|
protected arrange(): void;
|
|
@@ -14,7 +14,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
14
14
|
};
|
|
15
15
|
})();
|
|
16
16
|
import { PagesView } from "../../pages/views/PagesView";
|
|
17
|
-
import {
|
|
17
|
+
import { BaseAppView } from "../../base/views/BaseAppView";
|
|
18
18
|
var AppMainContainer = /** @class */ (function (_super) {
|
|
19
19
|
__extends(AppMainContainer, _super);
|
|
20
20
|
function AppMainContainer() {
|
|
@@ -34,6 +34,6 @@ var AppMainContainer = /** @class */ (function (_super) {
|
|
|
34
34
|
this.pagesView.resize(this.resizeSize.x, this.resizeSize.y);
|
|
35
35
|
};
|
|
36
36
|
return AppMainContainer;
|
|
37
|
-
}(
|
|
37
|
+
}(BaseAppView));
|
|
38
38
|
export { AppMainContainer };
|
|
39
39
|
//# sourceMappingURL=AppMainContainer.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AppMainContainer.js","sourceRoot":"","sources":["../../../src/app/views/AppMainContainer.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"AppMainContainer.js","sourceRoot":"","sources":["../../../src/app/views/AppMainContainer.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAC;AAExD,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAE3D;IAAsC,oCAAW;IAAjD;;IAmBA,CAAC;IAfa,uCAAY,GAAtB;QAAuB,cAAO;aAAP,UAAO,EAAP,qBAAO,EAAP,IAAO;YAAP,yBAAO;;QAC1B,iBAAM,YAAY,aAAI,IAAI,EAAE;QAE5B,IAAI,CAAC,SAAS,GAAG,IAAI,SAAS,EAAE,CAAC;QACjC,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;IAClC,CAAC;IAES,kCAAO,GAAjB;QACI,iBAAM,OAAO,WAAE,CAAC;QAEhB,IAAI,CAAC,SAAS,CAAC,MAAM,CACjB,IAAI,CAAC,UAAU,CAAC,CAAC,EACjB,IAAI,CAAC,UAAU,CAAC,CAAC,CACpB,CAAC;IACN,CAAC;IACL,uBAAC;AAAD,CAAC,AAnBD,CAAsC,WAAW,GAmBhD"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flashist/appframework",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.41",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "gulp",
|
|
6
6
|
"publish:patch": "npm version patch && npm run build && cd ./dist && npm publish",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"main": "index.js",
|
|
17
17
|
"typings": "index.d.ts",
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@flashist/fconsole": "0.
|
|
19
|
+
"@flashist/fconsole": "0.x",
|
|
20
20
|
"@flashist/flibs": "0.x"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|