@almadar/ui 2.42.0 → 2.45.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.
@@ -37,4 +37,9 @@ export declare function useEntitySchema(): EntitySchemaContextValue;
37
37
  * Get a specific entity's schema definition.
38
38
  */
39
39
  export declare function useEntityDefinition(entityName: string): ResolvedEntity | undefined;
40
+ /**
41
+ * Safe version of useEntitySchema that returns null when no provider is present.
42
+ * Used by UISlotRenderer which may render outside an EntitySchemaProvider (compiled mode).
43
+ */
44
+ export declare function useEntitySchemaOptional(): EntitySchemaContextValue | null;
40
45
  export default EntitySchemaProvider;