File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717 "default" : " ./dist/modern/index.cjs"
1818 }
1919 },
20+ "./purged" : {
21+ "import" : {
22+ "types" : " ./dist/modern/index.purged.d.ts" ,
23+ "default" : " ./dist/modern/index.purged.js"
24+ },
25+ "require" : {
26+ "types" : " ./dist/modern/index.purged.d.cts" ,
27+ "default" : " ./dist/modern/index.purged.cjs"
28+ }
29+ },
2030 "./package.json" : " ./package.json"
2131 },
2232 "files" : [
Original file line number Diff line number Diff line change 1+ /**
2+ * Purged entry: only the light SDK. Use this via resolve.alias in production
3+ * to exclude the full SDK (edit button, Visual Builder) from the bundle.
4+ * Same API as the main entry; no full HOC or DOM side effects.
5+ */
6+ import { IStackSdk as ExternalStackSdkType } from "./types/types" ;
7+ import LightLivePreviewHoC from "./light-sdk" ;
8+
9+ export type IStackSdk = ExternalStackSdkType ;
10+
11+ export const VB_EmptyBlockParentClass = "visual-builder__empty-block-parent" ;
12+ export default LightLivePreviewHoC ;
You can’t perform that action at this time.
0 commit comments