@pisell/lowcode-renderer 1.0.72 → 1.0.73

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.
@@ -156,6 +156,9 @@ var Render = function Render(props) {
156
156
  init();
157
157
  }
158
158
  }, [data, projectSchema, schemaHash]);
159
+ useEffect(function () {
160
+ console.log(performance.now(), 'schema components', schema, components);
161
+ }, [schema, components]);
159
162
  if (!schema || !components) {
160
163
  if (!isShowSkeleton) {
161
164
  return null;
@@ -127,6 +127,9 @@ var Render = (props) => {
127
127
  init();
128
128
  }
129
129
  }, [data, projectSchema, schemaHash]);
130
+ (0, import_react.useEffect)(() => {
131
+ console.log(performance.now(), "schema components", schema, components);
132
+ }, [schema, components]);
130
133
  if (!schema || !components) {
131
134
  if (!isShowSkeleton) {
132
135
  return null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pisell/lowcode-renderer",
3
- "version": "1.0.72",
3
+ "version": "1.0.73",
4
4
  "sideEffects": false,
5
5
  "main": "./lib/index.js",
6
6
  "module": "./es/index.js",