@cloudbase/lowcode-builder 1.3.0 → 1.3.1

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.
@@ -5,7 +5,7 @@
5
5
  "dependencies": {<% if(importJSSDK) {%>
6
6
  "@cloudbase/js-sdk": "2.5.6-beta.1",<% } %>
7
7
  "@cloudbase/oauth": "0.1.1-alpha.5",
8
- "@cloudbase/weda-client": "0.2.38",
8
+ "@cloudbase/weda-client": "0.2.39",
9
9
  "@cloudbase/weda-cloud-sdk": "1.0.26",
10
10
  "mobx": "^5.15.4",
11
11
  "lodash.get": "^4.4.2",
@@ -8,6 +8,9 @@ export const $w = new Proxy(
8
8
  baseAPI,
9
9
  {
10
10
  get(target, prop) {
11
+ if(prop === '$page'){
12
+ return $page
13
+ }
11
14
  // 尝试代理页面级别组件实例
12
15
  const pageWidget = $page.widgets?.[prop];
13
16
  if (pageWidget) {