@dosgato/templating 0.0.67 → 0.0.68

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.
@@ -230,7 +230,7 @@ export interface PageRecord<DataType extends PageData = PageData> {
230
230
  linkId: string;
231
231
  createdAt: Date;
232
232
  modifiedAt: Date;
233
- publishedAt: Date;
233
+ publishedAt: Date | null;
234
234
  path: string;
235
235
  data: DataType;
236
236
  site: SiteInfo;
@@ -36,7 +36,7 @@ export interface UITemplate {
36
36
  * things like color pickers that visually match the colors of the current page template
37
37
  * - environmentConfig: base URLs in case you need to generate a link to the API or something
38
38
  */
39
- dialog?: SvelteComponent;
39
+ dialog?: new (...args: any[]) => SvelteComponent;
40
40
  /**
41
41
  * Sometimes when you create a component that has areas, you want to automatically fill
42
42
  * one or more areas with some default introductory content.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dosgato/templating",
3
- "version": "0.0.67",
3
+ "version": "0.0.68",
4
4
  "description": "A library to support building templates for dosgato CMS.",
5
5
  "type": "module",
6
6
  "exports": {