@dosgato/templating 0.0.66 → 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.
- package/dist/component.d.ts +1 -1
- package/dist/uitemplate.d.ts +2 -2
- package/package.json +1 -1
package/dist/component.d.ts
CHANGED
package/dist/uitemplate.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ComponentData } from './component';
|
|
1
|
+
import { ComponentData } from './component.js';
|
|
2
2
|
export interface SvelteComponent {
|
|
3
3
|
$set: (props?: Record<string, any>) => void;
|
|
4
4
|
$on: (event: string, callback: (event: any) => void) => () => void;
|
|
@@ -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.
|