render-core 1.4.8 → 1.4.9

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.
@@ -16,13 +16,13 @@ export function get_proxy_for_method(data, updater) {
16
16
  */
17
17
  function get_setter_for_method_proxy(updater) {
18
18
  var setter = function (obj, prop, value) {
19
+ Reflect.set(obj, prop, value);
20
+ update_Render(this);
19
21
  try {
20
22
  this.watcher[prop](obj[prop], value);
21
23
  }
22
24
  catch (error) {
23
25
  }
24
- Reflect.set(obj, prop, value);
25
- update_Render(this);
26
26
  locateInputAddress(this);
27
27
  Reflect.deleteProperty(this, "origin");
28
28
  return true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "render-core",
3
- "version": "1.4.8",
3
+ "version": "1.4.9",
4
4
  "description": "The extendable javascript web framework",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -14,7 +14,7 @@ export declare abstract class AbstractComponent implements ComponentGeneric {
14
14
  private readonly watcher?;
15
15
  private readonly beforeRender?;
16
16
  private readonly afterRender?;
17
- constructor(config: {
17
+ protected constructor(config: {
18
18
  name: string;
19
19
  template: string;
20
20
  config?: {