@griddo/ax 11.3.0 → 11.3.1-rc.0

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@griddo/ax",
3
3
  "description": "Griddo Author Experience",
4
- "version": "11.3.0",
4
+ "version": "11.3.1-rc.0",
5
5
  "authors": [
6
6
  "Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
7
7
  "Carlos Torres <carlos.torres@secuoyas.com>",
@@ -226,5 +226,5 @@
226
226
  "publishConfig": {
227
227
  "access": "public"
228
228
  },
229
- "gitHead": "a79d065e23c54d42f453f227571ed1e3482d4a2a"
229
+ "gitHead": "cf4ec23d57b0df82bb10cfbc8bbbdbf3a3c5c6b3"
230
230
  }
@@ -32,6 +32,8 @@ const getComponentProps = (element: IModule, activatedModules: string[], isModul
32
32
  const isModuleDeactivated = isModuleArr && activatedModules && !activatedModules.includes(component);
33
33
  const isModuleDisabled = !schemaType;
34
34
 
35
+ console.log(isModuleDisabled, "no module schema");
36
+
35
37
  return { moduleTitle, isModuleDeactivated, componentTitle, displayName, isModule, isModuleDisabled };
36
38
  };
37
39