@itrocks/framework 0.0.29 → 0.0.31

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.
@@ -14,6 +14,7 @@ const config_1 = require("@itrocks/config");
14
14
  const core_transformers_1 = require("@itrocks/core-transformers");
15
15
  const core_transformers_2 = require("@itrocks/core-transformers");
16
16
  const lazy_loading_2 = require("@itrocks/lazy-loading");
17
+ const list_properties_1 = require("@itrocks/list-properties");
17
18
  const menu_1 = require("@itrocks/menu");
18
19
  const mysql_1 = require("@itrocks/mysql");
19
20
  const password_1 = require("@itrocks/password");
@@ -51,6 +52,7 @@ function bind() {
51
52
  routeOf: route_2.routeOf,
52
53
  tr: translate_1.tr
53
54
  });
55
+ (0, list_properties_1.initListProperties)();
54
56
  (0, mysql_1.mysqlDependsOn)({
55
57
  applyReadTransformer: async function (data, property, object) {
56
58
  const value = await (0, transformer_1.applyTransformer)(data[property], object, property, transformer_3.SQL, transformer_3.READ, data);
@@ -1,7 +1,7 @@
1
1
  import { PropertyTypes } from '@itrocks/property-type';
2
2
  import { ReflectClass as RC } from '@itrocks/reflect';
3
3
  export declare class ReflectClass<T extends object = object> extends RC<T> {
4
- inheritedPropertyTypes(propertyTypes: PropertyTypes<T>): void;
4
+ inheritedPropertyTypes(propertyTypes: PropertyTypes): void;
5
5
  get parent(): any;
6
6
  get properties(): {
7
7
  [s: string]: import("@itrocks/reflect").ReflectProperty<T>;
package/package.json CHANGED
@@ -34,6 +34,7 @@
34
34
  "@itrocks/forgot-password": "latest",
35
35
  "@itrocks/home": "latest",
36
36
  "@itrocks/lazy-loading": "latest",
37
+ "@itrocks/list-properties": "latest",
37
38
  "@itrocks/modal": "latest",
38
39
  "@itrocks/mysql": "latest",
39
40
  "@itrocks/notifications": "latest",
@@ -95,5 +96,5 @@
95
96
  "build:front": "tsc -p src/front/tsconfig.json && sed -i 's#../../##g' app.js app.d.ts"
96
97
  },
97
98
  "types": "./cjs/framework.d.ts",
98
- "version": "0.0.29"
99
+ "version": "0.0.31"
99
100
  }