@blocklet/pages-kit 0.4.118 → 0.4.119
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/lib/cjs/components/CustomComponentRenderer/state.js +34 -4
- package/lib/cjs/tsconfig.tsbuildinfo +1 -1
- package/lib/cjs/utils/property.js +3 -1
- package/lib/cjs/utils/typescript/builtin-module-transformer.js +39 -17
- package/lib/esm/components/CustomComponentRenderer/state.js +34 -4
- package/lib/esm/tsconfig.tsbuildinfo +1 -1
- package/lib/esm/utils/property.js +3 -1
- package/lib/esm/utils/typescript/builtin-module-transformer.js +36 -16
- package/lib/types/tsconfig.tsbuildinfo +1 -1
- package/lib/types/types/core.d.ts +1 -0
- package/lib/types/utils/property.d.ts +1 -0
- package/lib/types/utils/typescript/builtin-module-transformer.d.ts +2 -0
- package/package.json +1 -1
|
@@ -18,6 +18,7 @@ export declare function mergeComponent({ componentId, getComponent, locale, defa
|
|
|
18
18
|
props: {
|
|
19
19
|
[key: string]: any;
|
|
20
20
|
};
|
|
21
|
+
editComponent?: string;
|
|
21
22
|
} | null;
|
|
22
23
|
export declare const RenderNestedComponent = "__RENDER_NESTED_COMPONENT__";
|
|
23
24
|
export declare function safeJSONParse(value: string | Record<string, any>): any;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { SourceFile, TransformerFactory } from 'typescript';
|
|
2
2
|
export declare const isRelativeModule: (moduleSpecifier: string) => boolean;
|
|
3
3
|
export declare const isAsyncModule: (moduleSpecifier: string) => boolean;
|
|
4
|
+
export declare const isBuiltinModule: (moduleSpecifier: string) => boolean;
|
|
4
5
|
export declare const createBuiltinModuleTransformer: (ts: typeof import("typescript")) => TransformerFactory<SourceFile>;
|
|
6
|
+
export declare const createWellKnownChunksTransformer: (ts: typeof import("typescript")) => TransformerFactory<SourceFile>;
|