@happyvertical/smrt-workbench 0.43.10 → 0.44.0
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.
|
@@ -32,9 +32,13 @@ import { workbenchScriptCommand } from './command.js';
|
|
|
32
32
|
import MarkdownDocument from './MarkdownDocument.svelte';
|
|
33
33
|
|
|
34
34
|
export interface Props {
|
|
35
|
+
/** Project to display in the workbench. */
|
|
35
36
|
project: SmrtWorkbenchProject;
|
|
37
|
+
/** Workbench modules to display. */
|
|
36
38
|
modules?: SmrtWorkbenchModule[];
|
|
39
|
+
/** Playground modules to display in the playground tab. */
|
|
37
40
|
playgroundModules?: SmrtPlaygroundModule[];
|
|
41
|
+
/** Page title. */
|
|
38
42
|
title?: string;
|
|
39
43
|
}
|
|
40
44
|
|
|
@@ -2,9 +2,13 @@ import type { SmrtPlaygroundModule } from '@happyvertical/smrt-playground';
|
|
|
2
2
|
import type { Component } from 'svelte';
|
|
3
3
|
import type { SmrtWorkbenchModule, SmrtWorkbenchProject } from '../types.js';
|
|
4
4
|
export interface Props {
|
|
5
|
+
/** Project to display in the workbench. */
|
|
5
6
|
project: SmrtWorkbenchProject;
|
|
7
|
+
/** Workbench modules to display. */
|
|
6
8
|
modules?: SmrtWorkbenchModule[];
|
|
9
|
+
/** Playground modules to display in the playground tab. */
|
|
7
10
|
playgroundModules?: SmrtPlaygroundModule[];
|
|
11
|
+
/** Page title. */
|
|
8
12
|
title?: string;
|
|
9
13
|
}
|
|
10
14
|
declare const WorkbenchHost: Component<Props, {}, "">;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WorkbenchHost.svelte.d.ts","sourceRoot":"","sources":["../../src/svelte/WorkbenchHost.svelte.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAEV,oBAAoB,EACrB,MAAM,gCAAgC,CAAC;AAWxC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC;AAGxC,OAAO,KAAK,EAEV,mBAAmB,EACnB,oBAAoB,EAQrB,MAAM,aAAa,CAAC;AAKrB,MAAM,WAAW,KAAK;IACpB,OAAO,EAAE,oBAAoB,CAAC;IAC9B,OAAO,CAAC,EAAE,mBAAmB,EAAE,CAAC;IAChC,iBAAiB,CAAC,EAAE,oBAAoB,EAAE,CAAC;IAC3C,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AA2pCD,QAAA,MAAM,aAAa,0BAAwC,CAAC;AAC5D,KAAK,aAAa,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC;AACtD,eAAe,aAAa,CAAC"}
|
|
1
|
+
{"version":3,"file":"WorkbenchHost.svelte.d.ts","sourceRoot":"","sources":["../../src/svelte/WorkbenchHost.svelte.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAEV,oBAAoB,EACrB,MAAM,gCAAgC,CAAC;AAWxC,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC;AAGxC,OAAO,KAAK,EAEV,mBAAmB,EACnB,oBAAoB,EAQrB,MAAM,aAAa,CAAC;AAKrB,MAAM,WAAW,KAAK;IACpB,2CAA2C;IAC3C,OAAO,EAAE,oBAAoB,CAAC;IAC9B,oCAAoC;IACpC,OAAO,CAAC,EAAE,mBAAmB,EAAE,CAAC;IAChC,2DAA2D;IAC3D,iBAAiB,CAAC,EAAE,oBAAoB,EAAE,CAAC;IAC3C,kBAAkB;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AA2pCD,QAAA,MAAM,aAAa,0BAAwC,CAAC;AAC5D,KAAK,aAAa,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,CAAC;AACtD,eAAe,aAAa,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@happyvertical/smrt-workbench",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.44.0",
|
|
4
|
+
"smrtJsdoc": "strict",
|
|
4
5
|
"description": "Shared SMRT package and project workbench",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "./dist/index.js",
|
|
@@ -48,9 +49,9 @@
|
|
|
48
49
|
"svelte": "^5.56.4",
|
|
49
50
|
"tsx": "^4.23.0",
|
|
50
51
|
"vite": "^8.1.3",
|
|
51
|
-
"@happyvertical/smrt-
|
|
52
|
-
"@happyvertical/smrt-
|
|
53
|
-
"@happyvertical/smrt-ui": "0.
|
|
52
|
+
"@happyvertical/smrt-playground": "0.44.0",
|
|
53
|
+
"@happyvertical/smrt-svelte": "0.44.0",
|
|
54
|
+
"@happyvertical/smrt-ui": "0.44.0"
|
|
54
55
|
},
|
|
55
56
|
"peerDependencies": {
|
|
56
57
|
"svelte": "^5.56.4",
|