@dosgato/templating 0.0.126 → 0.0.128
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/dist/render.d.ts +1 -1
- package/package.json +1 -1
package/dist/component.d.ts
CHANGED
|
@@ -311,7 +311,7 @@ export declare abstract class Component<DataType extends ComponentData = any, Fe
|
|
|
311
311
|
static newBar: (path: string, opts: NewBarOpts) => string;
|
|
312
312
|
constructor(data: DataType, path: string, parent: Component | undefined, editMode: boolean, extension: string);
|
|
313
313
|
areas: Map<string, Component<any, any, ContextBase>[]>;
|
|
314
|
-
data:
|
|
314
|
+
data: DataType;
|
|
315
315
|
fetched: FetchedType;
|
|
316
316
|
renderCtx: RenderContextType;
|
|
317
317
|
path: string;
|
package/dist/render.d.ts
CHANGED