@dosgato/templating 0.0.45 → 0.0.46
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/dist/component.d.ts +1 -1
- package/package.json +1 -1
package/dist/component.d.ts
CHANGED
|
@@ -69,7 +69,7 @@ export declare abstract class Component<DataType extends ComponentData = any, Fe
|
|
|
69
69
|
* The inherited components will be added to the appropriate area's array in the renderedAreas
|
|
70
70
|
* parameter of your render function.
|
|
71
71
|
*/
|
|
72
|
-
registerInherited: (area: string, components: ComponentData[], top?: true) => void;
|
|
72
|
+
registerInherited: (area: string, components: ComponentData[], fromPageId: string, top?: true) => void;
|
|
73
73
|
/**
|
|
74
74
|
* The second phase of rendering a component is the context phase. This step is TOP-DOWN and
|
|
75
75
|
* NON-MUTATING. Each component will receive the parent component's context and then pass a
|