@dosgato/templating 0.0.68 → 0.0.69

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.
@@ -1,10 +1,4 @@
1
1
  import { ComponentData } from './component.js';
2
- export interface SvelteComponent {
3
- $set: (props?: Record<string, any>) => void;
4
- $on: (event: string, callback: (event: any) => void) => () => void;
5
- $destroy: () => void;
6
- [accessor: string]: any;
7
- }
8
2
  interface IconifyIcon {
9
3
  body: string;
10
4
  rotate?: number;
@@ -36,7 +30,7 @@ export interface UITemplate {
36
30
  * things like color pickers that visually match the colors of the current page template
37
31
  * - environmentConfig: base URLs in case you need to generate a link to the API or something
38
32
  */
39
- dialog?: new (...args: any[]) => SvelteComponent;
33
+ dialog?: new (...args: any[]) => any;
40
34
  /**
41
35
  * Sometimes when you create a component that has areas, you want to automatically fill
42
36
  * 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.68",
3
+ "version": "0.0.69",
4
4
  "description": "A library to support building templates for dosgato CMS.",
5
5
  "type": "module",
6
6
  "exports": {