render-core 1.4.4 → 1.4.5

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.
Files changed (3) hide show
  1. package/index.d.ts +1 -0
  2. package/index.js +4 -1
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -67,6 +67,7 @@ export declare class RenderJS extends AbstractRenderJS {
67
67
  }
68
68
  ];
69
69
  }): void;
70
+ setRouteMode(value: boolean): void;
70
71
  /**
71
72
  * This func is the plugin entry to third vendor
72
73
  */
package/index.js CHANGED
@@ -21,7 +21,7 @@ import { AbstractComponent } from "./tension/prototype/AbstractComponent";
21
21
  import { set_context_controller } from "./system/recorder/table0/system_func_0";
22
22
  import { PrefaceAction } from "./tension/prototype/PrefaceAction";
23
23
  import { SystemInitPlugin } from "./tension/SystemInitPlugin";
24
- import { get_route_mode, set_path_variable } from "./system/recorder/table1/system_func_1";
24
+ import { get_route_mode, set_path_variable, set_router_mode } from "./system/recorder/table1/system_func_1";
25
25
  /**
26
26
  * This class is used to prototype the properties type
27
27
  */
@@ -90,6 +90,9 @@ var RenderJS = /** @class */ (function (_super) {
90
90
  RenderJS.prototype.setRouteTable = function (value) {
91
91
  set_path_variable(value);
92
92
  };
93
+ RenderJS.prototype.setRouteMode = function (value) {
94
+ set_router_mode(value);
95
+ };
93
96
  /**
94
97
  * This func is the plugin entry to third vendor
95
98
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "render-core",
3
- "version": "1.4.4",
3
+ "version": "1.4.5",
4
4
  "description": "The extendable javascript web framework",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",