@cloudbase/framework-plugin-low-code 0.7.10 → 0.7.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 +1 -1
- package/template/html/index.html.ejs +1 -1
- package/template/package.json +1 -1
- package/template/src/app/global-api.js +1 -1
- package/template/src/handlers/FieldMiddleware/renderer.jsx +1 -1
- package/template/src/handlers/actionHandler/utils.js +1 -1
- package/template/src/handlers/lifecycle.js +1 -1
- package/template/src/handlers/render.jsx +1 -1
- package/template/src/handlers/utils/widgets.js +1 -1
- package/template/src/pages/app.tpl +1 -1
- package/template/src/pages/composite.tpl +1 -1
- package/template/src/utils/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudbase/framework-plugin-low-code",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.12",
|
|
4
4
|
"description": "云开发 Tencent CloudBase Framework Low Code Plugin,将低码配置生成完整项目并一键部署云开发资源。",
|
|
5
5
|
"author": "yhsunshining@gmail.com",
|
|
6
6
|
"homepage": "https://github.com/TencentCloudBase/cloudbase-framework#readme",
|
|
@@ -450,7 +450,7 @@
|
|
|
450
450
|
></script>
|
|
451
451
|
<script
|
|
452
452
|
crossorigin="anonymous"
|
|
453
|
-
src="https://qbase.cdn-go.cn//lcap/lcap-resource-cdngo/-/release/_npm/@cloudbase/weda-client@0.2.
|
|
453
|
+
src="https://qbase.cdn-go.cn//lcap/lcap-resource-cdngo/-/release/_npm/@cloudbase/weda-client@0.2.10/dist/web.browser.js"
|
|
454
454
|
></script>
|
|
455
455
|
</body>
|
|
456
456
|
</html>
|
package/template/package.json
CHANGED
|
@@ -12,7 +12,7 @@ import common from './common';
|
|
|
12
12
|
import { formatEnum, enumOptions } from '../utils/formatEnum';
|
|
13
13
|
import { _isMobile } from '../utils';
|
|
14
14
|
import actionMap from './material-actions';
|
|
15
|
-
import { get as lodashGet } from 'lodash
|
|
15
|
+
import { get as lodashGet } from 'lodash';
|
|
16
16
|
|
|
17
17
|
const mainAppKey = '__weappsMainApp';
|
|
18
18
|
const appGlobal = process.env.isMiniprogram ? getApp() : window;
|
|
@@ -3,7 +3,7 @@ import { useContext, useCallback, createContext, useRef } from 'react';
|
|
|
3
3
|
import { observer } from 'mobx-react-lite';
|
|
4
4
|
import { emitEvent } from '../actionHandler/utils';
|
|
5
5
|
import { translateStyleToRem } from '@tcwd/weapps-core';
|
|
6
|
-
import { get, set } from 'lodash
|
|
6
|
+
import { get, set } from 'lodash';
|
|
7
7
|
import { $page } from '../../app/global-api';
|
|
8
8
|
import { getDom } from '../utils/widgets';
|
|
9
9
|
import { checkVisible } from '../../utils/index';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { set, cloneDeep } from 'lodash
|
|
2
|
+
import { set, cloneDeep } from 'lodash';
|
|
3
3
|
import { ForContext, getComponentRenderList } from './FieldMiddleware/renderer';
|
|
4
4
|
import { isScopeSlot } from '../utils/index';
|
|
5
5
|
import { observer } from 'mobx-react-lite';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { observable, autorun, untracked } from 'mobx';
|
|
3
|
-
import { remove } from 'lodash
|
|
3
|
+
import { remove } from 'lodash';
|
|
4
4
|
import { checkVisible } from '../../utils/index';
|
|
5
5
|
|
|
6
6
|
export const WidgetsContext = React.createContext({ parent: null });
|
|
@@ -11,7 +11,7 @@ import { app as mainApp } from 'app/global-api' // 取主包app
|
|
|
11
11
|
import { app, $page } from '../../app/global-api' // 取对应子包app
|
|
12
12
|
import { createWidgets, retryDataBinds, resolveComponentProps, checkAuth, reportTime } from 'handlers/utils'
|
|
13
13
|
import { useScrollTop } from 'handlers/hooks'
|
|
14
|
-
import { get } from "lodash
|
|
14
|
+
import { get } from "lodash";
|
|
15
15
|
import './index.less'
|
|
16
16
|
<% if(pageSource){ %>
|
|
17
17
|
import { loadMicroApp } from 'qiankun';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import { observer } from "mobx-react-lite";
|
|
3
3
|
import { observable } from "mobx";
|
|
4
|
-
import { get } from 'lodash
|
|
4
|
+
import { get } from 'lodash'
|
|
5
5
|
|
|
6
6
|
import { AppRender } from "handlers/render";
|
|
7
7
|
import { createComputed } from "../../../../utils";
|