@kubb/react-fabric 0.12.5 → 0.12.6
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/dist/globals.d.cts +8 -8
- package/dist/globals.d.ts +8 -8
- package/dist/index.cjs +36 -39
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +24 -39
- package/dist/index.d.ts +24 -39
- package/dist/index.js +43 -64
- package/dist/index.js.map +1 -1
- package/dist/jsx-dev-runtime.cjs.map +1 -1
- package/dist/jsx-dev-runtime.d.cts +6 -6
- package/dist/jsx-dev-runtime.d.ts +6 -6
- package/dist/jsx-dev-runtime.js.map +1 -1
- package/dist/{jsx-namespace-fB1bxOIg.d.ts → jsx-namespace-BMpcDF6T.d.ts} +8 -8
- package/dist/{jsx-namespace-r-JXq_rp.d.cts → jsx-namespace-BdDNwAgO.d.cts} +8 -8
- package/dist/jsx-runtime-6sQc68DD.cjs.map +1 -1
- package/dist/jsx-runtime-CpElaHq6.js.map +1 -1
- package/dist/jsx-runtime.d.cts +6 -6
- package/dist/jsx-runtime.d.ts +6 -6
- package/dist/plugins.cjs +1 -1
- package/dist/plugins.d.cts +1 -1
- package/dist/plugins.d.ts +2 -2
- package/dist/plugins.js +1 -1
- package/dist/{reactPlugin-Dgs9o4KK.js → reactPlugin-C7_IY8_K.js} +5 -3
- package/dist/reactPlugin-C7_IY8_K.js.map +1 -0
- package/dist/{reactPlugin-ROpqWeoY.cjs → reactPlugin-DbTz9RKJ.cjs} +5 -3
- package/dist/reactPlugin-DbTz9RKJ.cjs.map +1 -0
- package/dist/{reactPlugin-B8VMf0BQ.d.ts → reactPlugin-Dl5F1rQk.d.ts} +6 -5
- package/dist/{reactPlugin-I53HUDXu.d.cts → reactPlugin-fdJaWnpd.d.cts} +6 -5
- package/dist/{types-XiObCuPy.d.ts → types-BKnc-nPE.d.ts} +15 -15
- package/dist/{types-J_S-h-Ae.d.cts → types-K0AHi-aU.d.cts} +15 -15
- package/dist/types.d.cts +2 -2
- package/dist/types.d.ts +2 -2
- package/package.json +3 -3
- package/src/Renderer.ts +2 -2
- package/src/Runtime.tsx +6 -4
- package/src/components/App.tsx +4 -4
- package/src/components/Const.tsx +4 -4
- package/src/components/File.tsx +11 -11
- package/src/components/Function.tsx +5 -5
- package/src/components/Root.tsx +7 -7
- package/src/components/Type.tsx +4 -4
- package/src/composables/useLifecycle.tsx +1 -19
- package/src/devtools.ts +2 -2
- package/src/globals.ts +17 -8
- package/src/index.ts +1 -6
- package/src/jsx-dev-runtime.ts +3 -3
- package/src/jsx-namespace.d.ts +8 -8
- package/src/jsx-runtime.ts +3 -3
- package/src/plugins/reactPlugin.ts +5 -5
- package/src/types.ts +24 -15
- package/dist/reactPlugin-Dgs9o4KK.js.map +0 -1
- package/dist/reactPlugin-ROpqWeoY.cjs.map +0 -1
|
@@ -67,7 +67,7 @@ var ErrorBoundary = class extends import_react.Component {
|
|
|
67
67
|
return this.props.children;
|
|
68
68
|
}
|
|
69
69
|
};
|
|
70
|
-
_defineProperty(ErrorBoundary, "displayName", "
|
|
70
|
+
_defineProperty(ErrorBoundary, "displayName", "ErrorBoundary");
|
|
71
71
|
/**
|
|
72
72
|
* This component provides the root behavior for the Fabric runtime.
|
|
73
73
|
*/
|
|
@@ -85,7 +85,7 @@ function Root({ onError, onExit, treeNode, fileManager, children }) {
|
|
|
85
85
|
children
|
|
86
86
|
});
|
|
87
87
|
}
|
|
88
|
-
Root.displayName = "
|
|
88
|
+
Root.displayName = "Root";
|
|
89
89
|
|
|
90
90
|
//#endregion
|
|
91
91
|
//#region ../../node_modules/.pnpm/scheduler@0.27.0/node_modules/scheduler/cjs/scheduler.production.js
|
|
@@ -17812,7 +17812,9 @@ var Runtime = class {
|
|
|
17812
17812
|
_classPrivateFieldSet2(_renderError, this, error);
|
|
17813
17813
|
}
|
|
17814
17814
|
onExit(error) {
|
|
17815
|
-
|
|
17815
|
+
setTimeout(() => {
|
|
17816
|
+
this.unmount(error);
|
|
17817
|
+
}, 0);
|
|
17816
17818
|
}
|
|
17817
17819
|
async render(node) {
|
|
17818
17820
|
const treeNode = _classPrivateFieldGet2(_options, this).treeNode || new _kubb_fabric_core.TreeNode({
|