simple-boot-front 1.0.102 → 1.0.103

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. package/README.MD +388 -388
  2. package/SimpleBootFront.d.ts +34 -34
  3. package/SimpleBootFront.js +337 -337
  4. package/decorators/Component.d.ts +11 -11
  5. package/decorators/Component.js +30 -30
  6. package/decorators/Script.d.ts +10 -10
  7. package/decorators/Script.js +31 -31
  8. package/decorators/inject/InjectFrontSituationType.d.ts +3 -3
  9. package/decorators/inject/InjectFrontSituationType.js +7 -7
  10. package/fetch/Fetcher.d.ts +4 -4
  11. package/fetch/Fetcher.js +9 -9
  12. package/lifecycle/OnChangedRender.d.ts +3 -3
  13. package/lifecycle/OnChangedRender.js +2 -2
  14. package/lifecycle/OnDestroy.d.ts +3 -3
  15. package/lifecycle/OnDestroy.js +2 -2
  16. package/lifecycle/OnFinish.d.ts +3 -3
  17. package/lifecycle/OnFinish.js +2 -2
  18. package/lifecycle/OnInit.d.ts +8 -8
  19. package/lifecycle/OnInit.js +2 -2
  20. package/lifecycle/OnInitedChild.d.ts +3 -3
  21. package/lifecycle/OnInitedChild.js +2 -2
  22. package/option/SimFrontOption.d.ts +14 -14
  23. package/option/SimFrontOption.js +45 -45
  24. package/package.json +83 -83
  25. package/script/ScriptRunnable.d.ts +7 -7
  26. package/script/ScriptRunnable.js +22 -22
  27. package/service/CookieService.d.ts +11 -11
  28. package/service/CookieService.js +54 -54
  29. package/service/HttpService.d.ts +3 -3
  30. package/service/HttpService.js +23 -23
  31. package/service/MetaTagService.d.ts +11 -11
  32. package/service/MetaTagService.js +52 -52
  33. package/service/Navigation.d.ts +18 -18
  34. package/service/Navigation.js +117 -117
  35. package/service/ScriptService.d.ts +7 -7
  36. package/service/ScriptService.js +39 -39
  37. package/service/StorageService.d.ts +12 -12
  38. package/service/StorageService.js +67 -67
  39. package/service/view/View.d.ts +6 -6
  40. package/service/view/View.js +29 -29
  41. package/service/view/ViewService.d.ts +7 -7
  42. package/service/view/ViewService.js +46 -46
  43. package/throwable/RouterError.d.ts +4 -4
  44. package/throwable/RouterError.js +27 -27
  45. package/throwable/RouterIntentError.d.ts +4 -4
  46. package/throwable/RouterIntentError.js +27 -27
  47. package/throwable/RouterNotFount.d.ts +4 -4
  48. package/throwable/RouterNotFount.js +27 -27
@@ -1,34 +1,34 @@
1
- import { SimFrontOption } from './option/SimFrontOption';
2
- import { ConstructorType } from 'simple-boot-core/types/Types';
3
- import { SimAtomic } from 'simple-boot-core/simstance/SimAtomic';
4
- import { SimpleApplication } from 'simple-boot-core/SimpleApplication';
5
- import { Navigation } from './service/Navigation';
6
- import { HttpService } from './service/HttpService';
7
- import { SimstanceManager } from 'simple-boot-core/simstance/SimstanceManager';
8
- import { IntentManager } from 'simple-boot-core/intent/IntentManager';
9
- import { RouterManager } from 'simple-boot-core/route/RouterManager';
10
- import { Config, TargetElement, TargetAttr } from 'dom-render/Config';
11
- import { RouterModule } from 'simple-boot-core/route/RouterModule';
12
- export declare class SimpleBootFront extends SimpleApplication {
13
- rootRouter: ConstructorType<any>;
14
- option: SimFrontOption;
15
- navigation: Navigation;
16
- domRendoerExcludeProxy: (typeof SimFrontOption | typeof SimstanceManager | typeof IntentManager | typeof RouterManager | typeof SimpleApplication | typeof Navigation | typeof HttpService)[];
17
- domRenderTargetElements: TargetElement[];
18
- domRenderTargetAttrs: TargetAttr[];
19
- domRenderConfig: Config;
20
- constructor(rootRouter: ConstructorType<any>, option: SimFrontOption);
21
- getComponentInnerHtml(targetObj: any): string;
22
- createDomRender<T extends object>(obj: T): T;
23
- private initRun;
24
- initWriteRootRouter(): void;
25
- writeRootRouter(): SimAtomic<any>;
26
- goRouting(url: string): Promise<RouterModule<SimAtomic<Object>, any>>;
27
- runRouting(otherInstanceSim?: Map<ConstructorType<any>, any>, url?: string): Promise<RouterModule<SimAtomic<Object>, any> | undefined>;
28
- run(otherInstanceSim?: Map<ConstructorType<any>, any>, url?: string): void;
29
- private afterSetting;
30
- initDomRenderScripts(): void;
31
- private initDomRenderTargetElements;
32
- getSimstanceManager(): SimstanceManager;
33
- go(url: string): void;
34
- }
1
+ import { SimFrontOption } from './option/SimFrontOption';
2
+ import { ConstructorType } from 'simple-boot-core/types/Types';
3
+ import { SimAtomic } from 'simple-boot-core/simstance/SimAtomic';
4
+ import { SimpleApplication } from 'simple-boot-core/SimpleApplication';
5
+ import { Navigation } from './service/Navigation';
6
+ import { HttpService } from './service/HttpService';
7
+ import { SimstanceManager } from 'simple-boot-core/simstance/SimstanceManager';
8
+ import { IntentManager } from 'simple-boot-core/intent/IntentManager';
9
+ import { RouterManager } from 'simple-boot-core/route/RouterManager';
10
+ import { Config, TargetElement, TargetAttr } from 'dom-render/Config';
11
+ import { RouterModule } from 'simple-boot-core/route/RouterModule';
12
+ export declare class SimpleBootFront extends SimpleApplication {
13
+ rootRouter: ConstructorType<any>;
14
+ option: SimFrontOption;
15
+ navigation: Navigation;
16
+ domRendoerExcludeProxy: (typeof SimFrontOption | typeof SimstanceManager | typeof IntentManager | typeof RouterManager | typeof SimpleApplication | typeof Navigation | typeof HttpService)[];
17
+ domRenderTargetElements: TargetElement[];
18
+ domRenderTargetAttrs: TargetAttr[];
19
+ domRenderConfig: Config;
20
+ constructor(rootRouter: ConstructorType<any>, option: SimFrontOption);
21
+ getComponentInnerHtml(targetObj: any): string;
22
+ createDomRender<T extends object>(obj: T): T;
23
+ private initRun;
24
+ initWriteRootRouter(): void;
25
+ writeRootRouter(): SimAtomic<any>;
26
+ goRouting(url: string): Promise<RouterModule<SimAtomic<Object>, any>>;
27
+ runRouting(otherInstanceSim?: Map<ConstructorType<any>, any>, url?: string): Promise<RouterModule<SimAtomic<Object>, any> | undefined>;
28
+ run(otherInstanceSim?: Map<ConstructorType<any>, any>, url?: string): void;
29
+ private afterSetting;
30
+ initDomRenderScripts(): void;
31
+ private initDomRenderTargetElements;
32
+ getSimstanceManager(): SimstanceManager;
33
+ go(url: string): void;
34
+ }