@lark-apaas/client-toolkit 1.2.10-alpha.30 → 1.2.10-alpha.31

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.
@@ -15,6 +15,7 @@
15
15
  * - 使用 __FULLSTACK_RUNTIME_INITIALIZED__ 标志位防止重复初始化
16
16
  * - 旧版 AppContainer 和新版 runtime 可以共存
17
17
  */
18
+ import './react-devtools-hook';
18
19
  import './styles';
19
20
  declare global {
20
21
  interface Window {
@@ -1,3 +1,4 @@
1
+ import "./react-devtools-hook.js";
1
2
  import "./styles.js";
2
3
  import { registerDayjsPlugins } from "./dayjs.js";
3
4
  import { initAxiosConfig } from "./axios.js";
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Inject minimal __REACT_DEVTOOLS_GLOBAL_HOOK__ before React loads.
3
+ * React checks for this hook during module initialization and registers its
4
+ * renderer via hook.inject(). This gives us access to renderer.overrideProps()
5
+ * for live component prop modification in the inspector.
6
+ *
7
+ * Must execute before React's module-level code runs.
8
+ */
9
+ export {};
10
+ declare global {
11
+ interface Window {
12
+ __REACT_DEVTOOLS_GLOBAL_HOOK__?: any;
13
+ }
14
+ }
@@ -0,0 +1,11 @@
1
+ if ('undefined' != typeof window && !window.__REACT_DEVTOOLS_GLOBAL_HOOK__) window.__REACT_DEVTOOLS_GLOBAL_HOOK__ = {
2
+ renderers: new Map(),
3
+ supportsFiber: true,
4
+ inject (renderer) {
5
+ const id = this.renderers.size + 1;
6
+ this.renderers.set(id, renderer);
7
+ return id;
8
+ },
9
+ onCommitFiberRoot () {},
10
+ onCommitFiberUnmount () {}
11
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lark-apaas/client-toolkit",
3
- "version": "1.2.10-alpha.30",
3
+ "version": "1.2.10-alpha.31",
4
4
  "types": "./lib/index.d.ts",
5
5
  "main": "./lib/index.js",
6
6
  "files": [
@@ -96,7 +96,7 @@
96
96
  "@data-loom/js": "0.4.6",
97
97
  "@lark-apaas/auth-sdk": "^0.1.0",
98
98
  "@lark-apaas/client-capability": "^0.1.4",
99
- "@lark-apaas/miaoda-inspector": "1.0.14-alpha.13",
99
+ "@lark-apaas/miaoda-inspector": "1.0.14-alpha.14",
100
100
  "@lark-apaas/observable-web": "^1.0.1",
101
101
  "@radix-ui/react-avatar": "^1.1.10",
102
102
  "@radix-ui/react-popover": "^1.1.15",