@blocklet/pages-kit-block-studio 0.6.7 → 0.6.9

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,3 +1,4 @@
1
+ import type { Format } from 'esbuild';
1
2
  export * from '../constants';
2
3
  export interface GlobOptions {
3
4
  cwd?: string;
@@ -30,6 +31,7 @@ export declare function generateYaml(metadata: any): string;
30
31
  export declare function getBlockStudioInfo(): import("@blocklet/sdk/lib/config").MountPoint | undefined;
31
32
  export declare const getBlockCode: (filePath: string) => string;
32
33
  export declare const safeParse: (text: string) => any;
34
+ export declare const getComponentScriptName: (blockName: string, format: Format) => string;
33
35
  export declare const EDIT_COMPONENT_NAME = "EditComponent";
34
36
  export declare const getEditComponentBlockName: (blockName: string) => string;
35
37
  export declare const PROPERTIES_SCHEMA_NAME = "PROPERTIES_SCHEMA";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blocklet/pages-kit-block-studio",
3
- "version": "0.6.7",
3
+ "version": "0.6.9",
4
4
  "description": "Pages Kit block studio for blocklet(s)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -141,7 +141,7 @@
141
141
  "zod": "^3.24.2",
142
142
  "zod-to-json-schema": "^3.24.4",
143
143
  "zod-to-ts": "^1.2.0",
144
- "@blocklet/pages-kit": "0.6.7"
144
+ "@blocklet/pages-kit": "0.6.9"
145
145
  },
146
146
  "devDependencies": {
147
147
  "@rollup/plugin-typescript": "^11.1.6",
@@ -167,7 +167,7 @@
167
167
  "zod": "^3.24.2",
168
168
  "zod-to-json-schema": "^3.24.4",
169
169
  "zod-to-ts": "^1.2.0",
170
- "@blocklet/pages-kit": "0.6.7"
170
+ "@blocklet/pages-kit": "0.6.9"
171
171
  },
172
172
  "scripts": {
173
173
  "lint": "eslint src --ext .mjs,.js,.jsx,.ts,.tsx",