@sequenceholdings/artifact-studio 0.2.0 → 0.2.1

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.
Files changed (2) hide show
  1. package/dist/sdk.d.ts +11 -0
  2. package/package.json +3 -3
package/dist/sdk.d.ts CHANGED
@@ -96,6 +96,17 @@ export interface SequenceHost {
96
96
  * user to an external origin.
97
97
  */
98
98
  navigate(path: string): void;
99
+ /**
100
+ * Coordinate a viewport-modal scrim with the parent Atlas shell. The
101
+ * artifact keeps ownership of its dialog and in-frame scrim; the host only
102
+ * dims shell chrome outside the iframe. Calls are reference-counted by
103
+ * `overlayId`, so every open transition must eventually send `open: false`.
104
+ */
105
+ setOverlayState(state: {
106
+ overlayId: string;
107
+ scope: 'viewport';
108
+ open: boolean;
109
+ }): void;
99
110
  }
100
111
  export interface SequenceArtifactSdk {
101
112
  api: SequenceApi;
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "publishConfig": {
10
10
  "access": "public"
11
11
  },
12
- "version": "0.2.0",
12
+ "version": "0.2.1",
13
13
  "description": "SDK types and CLI library for building Artifact Studio apps. Driven via `seq-studio artifact <sub>` (@sequenceholdings/studio-cli), which runs the `./cli` runCli export.",
14
14
  "type": "module",
15
15
  "exports": {
@@ -80,8 +80,8 @@
80
80
  "tw-animate-css": "^1.4.0",
81
81
  "vite": "8.0.16",
82
82
  "zod": "^4.1.13",
83
- "@sequenceholdings/lattice-form-renderer": "0.1.1",
84
- "@sequenceholdings/atlas-ui": "0.3.1"
83
+ "@sequenceholdings/lattice-form-renderer": "0.1.2",
84
+ "@sequenceholdings/atlas-ui": "2.0.1"
85
85
  },
86
86
  "devDependencies": {
87
87
  "@types/js-yaml": "^4.0.9",