@developer_tribe/react-builder 1.2.11 → 1.2.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@developer_tribe/react-builder",
3
- "version": "1.2.11",
3
+ "version": "1.2.12",
4
4
  "license": "UNLICENSED",
5
5
  "type": "module",
6
6
  "restricted": true,
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "supportedProjectVersion": "1.1.2",
3
- "reactBuilderVersion": "1.2.10"
3
+ "reactBuilderVersion": "1.2.11"
4
4
  }
package/src/index.ts CHANGED
@@ -79,6 +79,9 @@ export {
79
79
  getArrayItemType,
80
80
  } from './utils/patterns';
81
81
 
82
+ // Build-component prop/types surface (type-only export; no runtime code pulled into RN bundle)
83
+ export type * from './build-components';
84
+
82
85
  // Node helpers (RN-safe)
83
86
  export { default as useNode } from './build-components/useNode';
84
87
 
@@ -89,4 +92,3 @@ export {
89
92
  getOnboardSamples,
90
93
  } from './assets/samples/getSamples';
91
94
  export type { EventObjectGenerated } from './build-components/OnboardButton/OnboardButtonProps.generated';
92
- export * from './build-components';
package/src/index.web.ts CHANGED
@@ -5,3 +5,8 @@ export { ProjectPage } from './pages/ProjectPage';
5
5
 
6
6
  // Re-export the RN-safe/root entry so `react-builder/web` can also access shared APIs.
7
7
  export * from './index';
8
+
9
+ // Web-only runtime renderer + components (DOM + web style extraction + optional deps like lottie/react-toastify).
10
+ export * from './build-components';
11
+ export { default as useNode } from './build-components/useNode';
12
+ export type { EventObjectGenerated } from './build-components/OnboardButton/OnboardButtonProps.generated';