lc-test3 1.1.2 → 1.1.4

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.
Files changed (2) hide show
  1. package/p.js +255 -213
  2. package/package.json +1 -1
package/p.js CHANGED
@@ -1,213 +1,255 @@
1
- import React from "react";
2
- import { definePage } from "@loview/lowcode-react-boot";
3
- import {
4
- Page,
5
- QueryPage,
6
- FForm,
7
- FFormItem,
8
- FFormFooter,
9
- FSubmit,
10
- FReset,
11
- Table } from
12
- "@loview/lowcode-react-antd";
13
-
14
- class App extends React.Component {
15
- render() {/**
16
- * RESOURCESTREE-START
17
- * interfaces:
18
- * -
19
- * interfaceName: ��ѯ��������
20
- * interface: /los/${appName}.pagePendingCirculateTask
21
- * -
22
- * interfaceName: ��ȡ���������Ϣ
23
- * interface: /los/${appName}.getTaskFormExtInfo
24
- * -
25
- * interfaceName: ��ȡ����ʵ������ӿ�
26
- * interface: /los/${appName}.taskInstanceDetail
27
- * -
28
- * interfaceName: ��ȡ����ʵ��
29
- * interface: /los/${appName}.processInstanceDetail
30
- * -
31
- * interfaceName: ����
32
- * interface: /los/${appName}.read
33
- * -
34
- * interfaceName: ��ȡ�����б���Ϣ
35
- * interface: /los/${appName}.listComments
36
- * -
37
- * interfaceName: ����׷�ٽӿ�
38
- * interface: /los/${appName}.traceProcess
39
- * RESOURCESTREE-END
40
- */
41
-
42
-
43
- return (
44
- <Page
45
- onMount={() => {
46
- $function.circulate?.fetchPending();
47
- }}
48
- title="��������"
49
- access={{
50
- relatedInterfaces: [
51
- {
52
- label: "��ѯ��������",
53
- value: "/los/${appName}.pagePendingCirculateTask"
54
- },
55
- {
56
- label: "��ȡ���������Ϣ",
57
- value: "/los/${appName}.getTaskFormExtInfo"
58
- },
59
- {
60
- label: "��ȡ����ʵ������ӿ�",
61
- value: "/los/${appName}.taskInstanceDetail"
62
- },
63
- {
64
- label: "��ȡ����ʵ��",
65
- value: "/los/${appName}.processInstanceDetail"
66
- },
67
- {
68
- label: "����",
69
- value: "/los/${appName}.read"
70
- },
71
- {
72
- label: "��ȡ�����б���Ϣ",
73
- value: "/los/${appName}.listComments"
74
- },
75
- { label: "����׷�ٽӿ�", value: "/los/${appName}.traceProcess" }]
76
-
77
- }}>
78
-
79
- <QueryPage
80
- title="��������"
81
- query={
82
- <FForm
83
- layout="horizontal"
84
- layoutAlign="right"
85
- maxColumns={8}
86
- maxWidth={343}
87
- minWidth={263}
88
- labelWidth={100}
89
- tid="fForm689">
90
-
91
- <FFormItem
92
- label="��������"
93
- name="processName"
94
- component="Input"
95
- tid="fFormItem144" />
96
-
97
-
98
- <FFormItem
99
- label="��ˮ��"
100
- name="seqNo"
101
- component="Input"
102
- tid="fFormItem908" />
103
-
104
-
105
- <FFormItem
106
- label="����ʱ��"
107
- name="times"
108
- component="DateRangePicker"
109
- tid="fFormItem469"
110
- componentProps={{
111
- allowClear: true,
112
- showTime: true
113
- }} />
114
-
115
-
116
- <FFormFooter
117
- gutter={10}
118
- align="right"
119
- gridSpan={-1}
120
- tid="fFormFooter242">
121
-
122
- <FReset
123
- children="����"
124
- tid="fReset847"
125
- onClick={() => {
126
- $function.circulate?.resetPending();
127
- }} />
128
-
129
-
130
- <FSubmit
131
- children="��ѯ"
132
- tid="fSubmit559"
133
- onSubmit={(values) => {
134
- $function.circulate?.fetchPending(values);
135
- }} />
136
-
137
- </FFormFooter>
138
- </FForm>
139
- }
140
- tid="queryPagec693">
141
-
142
- <Table
143
- columns={[
144
- {
145
- key: "processName",
146
- dataIndex: "processName",
147
- title: "��������",
148
- mobileTemplateField: "title"
149
- },
150
- {
151
- key: "seqNo",
152
- dataIndex: "seqNo",
153
- title: "���̺�",
154
- mobileTemplateField: "bottom"
155
- },
156
- {
157
- key: "taskName",
158
- dataIndex: "taskName",
159
- title: "��������",
160
- mobileTemplateField: "mainInfo"
161
- },
162
- {
163
- key: "receiveTime",
164
- dataIndex: "receiveTime",
165
- title: "����ʱ��",
166
- render: (text) => new Date(text).toLocaleString()
167
- },
168
- {
169
- key: "startUserName",
170
- dataIndex: "startUserName",
171
- title: "������",
172
- mobileTemplateField: "mainInfo"
173
- },
174
- {
175
- key: "startUserDeptName",
176
- dataIndex: "startUserDeptName",
177
- title: "������֯"
178
- }]
179
- }
180
- tid="table923"
181
- scroll={{ x: 1000 }}
182
- dataSource={$variable.circulate?.pending?.items}
183
- rowKey="taskInstanceId"
184
- pagination={{
185
- pageSize: $variable.circulate?.pending.pagination?.pageSize,
186
- total: $variable.circulate?.pending.pagination?.total,
187
- current: $variable.circulate?.pending.pagination?.current
188
- }}
189
- onChange={(pagination) => {
190
- $function.circulate.fetchPending({
191
- pageNo: pagination.current,
192
- pageSize: pagination.pageSize
193
- });
194
- }}
195
- loading={$variable.circulate?.loadingPending}
196
- onRowClick={([record]) => {
197
- $function.task.toTaskDetail([
198
- record.taskInstanceId,
199
- record.pendingTaskId,
200
- true,
201
- true]
202
- );
203
- }}
204
- rowPointer={true} />
205
-
206
- </QueryPage>
207
- </Page>);
208
-
209
- }
210
- }
211
-
212
- export default definePage(App);
213
- import React from "react";import { definePage } from "@loview/lowcode-react-boot";import { Page, QueryPage, FForm, FFormItem, FFormFooter, FSubmit, FReset, Table } from "@loview/lowcode-react-antd";class App extends React.Component {render() {}}export default definePage(App);
1
+ [ASTCache] Parse miss (SWC) - /findImportList.js (0.80ms)
2
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /findNavigationMenuItems.js (1.80ms)
3
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /findVarFromFile.js (2.70ms)
4
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /generateResourcesTree.js (4.70ms)
5
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /scanFiles.js (2.90ms)
6
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/StatusTrace/components/DividerTitle/index.js (0.40ms)
7
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/StatusTrace/components/edge/CustomEdge.js (4.40ms)
8
+ index.ts:6 [Error]: unknown property key Object
9
+ (anonymous) @ index.ts:6
10
+ index.ts:6 [Error]: unknown property key Object
11
+ (anonymous) @ index.ts:6
12
+ index.ts:6 [Error]: unknown property key Object
13
+ (anonymous) @ index.ts:6
14
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/StatusTrace/components/edge/DashEdge.js (1.10ms)
15
+ index.ts:6 [Error]: unknown property key Object
16
+ (anonymous) @ index.ts:6
17
+ index.ts:6 [Error]: unknown property key Object
18
+ (anonymous) @ index.ts:6
19
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/StatusTrace/components/edge/SolidEdge.js (1.30ms)
20
+ index.ts:6 [Error]: unknown property key Object
21
+ (anonymous) @ index.ts:6
22
+ index.ts:6 [Error]: unknown property key Object
23
+ (anonymous) @ index.ts:6
24
+ index.ts:6 [Error]: unknown property key Object
25
+ (anonymous) @ index.ts:6
26
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/StatusTrace/components/node/EndNode.js (2.10ms)
27
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/StatusTrace/components/node/ExclusiveGatewayNode.js (1.50ms)
28
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/StatusTrace/components/node/JointTaskNode.js (2.80ms)
29
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/StatusTrace/components/node/ParallelTaskNode.js (2.70ms)
30
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/StatusTrace/components/node/StartNode.js (1.40ms)
31
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/StatusTrace/components/node/SystemTaskNode.js (1.50ms)
32
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/StatusTrace/components/node/UserTaskNode.js (1.70ms)
33
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/StatusTrace/components/plugins/index.js (0.30ms)
34
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/StatusTrace/components/plugins/keyboard.js (1.30ms)
35
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/StatusTrace/index.js (9.80ms)
36
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/StatusTrace/keyboard.js (0.60ms)
37
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/WorkFlowProcessTrace/components/DividerTitle/index.js (0.50ms)
38
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/WorkFlowProcessTrace/components/edge/CustomEdge.js (1.60ms)
39
+ index.ts:6 [Error]: unknown property key Object
40
+ (anonymous) @ index.ts:6
41
+ index.ts:6 [Error]: unknown property key Object
42
+ (anonymous) @ index.ts:6
43
+ index.ts:6 [Error]: unknown property key Object
44
+ (anonymous) @ index.ts:6
45
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/WorkFlowProcessTrace/components/edge/DashEdge.js (0.80ms)
46
+ index.ts:6 [Error]: unknown property key Object
47
+ (anonymous) @ index.ts:6
48
+ index.ts:6 [Error]: unknown property key Object
49
+ (anonymous) @ index.ts:6
50
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/WorkFlowProcessTrace/components/edge/SolidEdge.js (0.80ms)
51
+ index.ts:6 [Error]: unknown property key Object
52
+ (anonymous) @ index.ts:6
53
+ index.ts:6 [Error]: unknown property key Object
54
+ (anonymous) @ index.ts:6
55
+ index.ts:6 [Error]: unknown property key Object
56
+ (anonymous) @ index.ts:6
57
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/WorkFlowProcessTrace/components/node/EndNode.js (2.60ms)
58
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/WorkFlowProcessTrace/components/node/ExclusiveGatewayNode.js (1.80ms)
59
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/WorkFlowProcessTrace/components/node/JointTaskNode.js (2.90ms)
60
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/WorkFlowProcessTrace/components/node/ParallelTaskNode.js (2.90ms)
61
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/WorkFlowProcessTrace/components/node/StartNode.js (2.30ms)
62
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/WorkFlowProcessTrace/components/node/SystemTaskNode.js (1.80ms)
63
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/WorkFlowProcessTrace/components/node/UserTaskNode.js (1.80ms)
64
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/WorkFlowProcessTrace/components/plugins/index.js (0.10ms)
65
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/WorkFlowProcessTrace/components/plugins/keyboard.js (0.40ms)
66
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/WorkFlowProcessTrace/contants.js (1.20ms)
67
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/WorkFlowProcessTrace/index.js (11.50ms)
68
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/WorkFlowProcessTrace/keyboard.js (0.40ms)
69
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/WorkFlowProcessTrace/utils.js (1.80ms)
70
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/button.js (0.80ms)
71
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/input.js (0.40ms)
72
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/components/workflow.js (5.00ms)
73
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/constants.js (0.10ms)
74
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/formPages/DefaultForm.js (12.20ms)
75
+ ast-cache.ts:944 [ASTCache] Parse miss (SWC) - /src/formPages/demoForm1-v1.js (10.80ms)
76
+ judgeBrowser.js:30 �����쳣�� ErrorEvent
77
+ useObserver.js:87 Uncaught Error: Unknown node type: "Computed"
78
+ at cloneNodeInternal (cloneNode.js:49:1)
79
+ at cloneIfNode (cloneNode.js:16:1)
80
+ at cloneIfNodeOrArray (cloneNode.js:24:1)
81
+ at cloneNodeInternal (cloneNode.js:54:1)
82
+ at cloneIfNode (cloneNode.js:16:1)
83
+ at cloneIfNodeOrArray (cloneNode.js:24:1)
84
+ at cloneNodeInternal (cloneNode.js:54:1)
85
+ at cloneIfNode (cloneNode.js:16:1)
86
+ at cloneIfNodeOrArray (cloneNode.js:24:1)
87
+ at cloneNodeInternal (cloneNode.js:54:1)
88
+ at cloneIfNode (cloneNode.js:16:1)
89
+ at cloneIfNodeOrArray (cloneNode.js:24:1)
90
+ at cloneNodeInternal (cloneNode.js:54:1)
91
+ at cloneIfNode (cloneNode.js:16:1)
92
+ at cloneNode.js:22:1
93
+ at Array.map (<anonymous>)
94
+ at cloneIfNodeOrArray (cloneNode.js:22:1)
95
+ at cloneNodeInternal (cloneNode.js:54:1)
96
+ at cloneIfNode (cloneNode.js:16:1)
97
+ at cloneIfNodeOrArray (cloneNode.js:24:1)
98
+ at cloneNodeInternal (cloneNode.js:54:1)
99
+ at cloneIfNode (cloneNode.js:16:1)
100
+ at cloneNode.js:22:1
101
+ at Array.map (<anonymous>)
102
+ at cloneIfNodeOrArray (cloneNode.js:22:1)
103
+ at cloneNodeInternal (cloneNode.js:54:1)
104
+ at cloneIfNode (cloneNode.js:16:1)
105
+ at cloneIfNodeOrArray (cloneNode.js:24:1)
106
+ at cloneNodeInternal (cloneNode.js:54:1)
107
+ at cloneIfNode (cloneNode.js:16:1)
108
+ at cloneNode.js:22:1
109
+ at Array.map (<anonymous>)
110
+ at cloneIfNodeOrArray (cloneNode.js:22:1)
111
+ at cloneNodeInternal (cloneNode.js:54:1)
112
+ at cloneIfNode (cloneNode.js:16:1)
113
+ at cloneIfNodeOrArray (cloneNode.js:24:1)
114
+ at cloneNodeInternal (cloneNode.js:54:1)
115
+ at cloneIfNode (cloneNode.js:16:1)
116
+ at cloneNode.js:22:1
117
+ at Array.map (<anonymous>)
118
+ at cloneIfNodeOrArray (cloneNode.js:22:1)
119
+ at cloneNodeInternal (cloneNode.js:54:1)
120
+ at cloneIfNode (cloneNode.js:16:1)
121
+ at cloneIfNodeOrArray (cloneNode.js:24:1)
122
+ at cloneNodeInternal (cloneNode.js:54:1)
123
+ at cloneIfNode (cloneNode.js:16:1)
124
+ at cloneNode.js:22:1
125
+ at Array.map (<anonymous>)
126
+ at cloneIfNodeOrArray (cloneNode.js:22:1)
127
+ at cloneNodeInternal (cloneNode.js:54:1)
128
+ index.ts:6 The above error occurred in the <ForwardRef> component:
129
+
130
+ at observerComponent (https://lowcode.example.com/vendors-loview-react-lowcode_node_modules_pnpm_emotion_css_11_11_2_node_modules_emotion_css_d-8c49fa.async.js:43819:73)
131
+ at div
132
+ at x (https://10.4.5.136/unpkg/styled-components@5.3.11/dist/styled-components.js:1:37459)
133
+ at ViewportBody (https://lowcode.example.com/src_components_index_ts-src_components_DraggableModal_index_less.async.js:74813:24)
134
+ at div
135
+ at x (https://10.4.5.136/unpkg/styled-components@5.3.11/dist/styled-components.js:1:37459)
136
+ at https://lowcode.example.com/vendors-loview-react-lowcode_node_modules_pnpm_emotion_css_11_11_2_node_modules_emotion_css_d-8c49fa.async.js:43819:73
137
+ at div
138
+ at x (https://10.4.5.136/unpkg/styled-components@5.3.11/dist/styled-components.js:1:37459)
139
+ at MetaportBody (https://lowcode.example.com/src_components_index_ts-src_components_DraggableModal_index_less.async.js:73606:24)
140
+ at div
141
+ at x (https://10.4.5.136/unpkg/styled-components@5.3.11/dist/styled-components.js:1:37459)
142
+ at Metaport (https://lowcode.example.com/src_components_index_ts-src_components_DraggableModal_index_less.async.js:73547:23)
143
+ at div
144
+ at x (https://10.4.5.136/unpkg/styled-components@5.3.11/dist/styled-components.js:1:37459)
145
+ at div
146
+ at x (https://10.4.5.136/unpkg/styled-components@5.3.11/dist/styled-components.js:1:37459)
147
+ at https://lowcode.example.com/vendors-loview-react-lowcode_node_modules_pnpm_emotion_css_11_11_2_node_modules_emotion_css_d-8c49fa.async.js:43819:73
148
+ at https://lowcode.example.com/vendors-loview-react-lowcode_node_modules_pnpm_emotion_css_11_11_2_node_modules_emotion_css_d-8c49fa.async.js:43819:73
149
+ at div
150
+ at x (https://10.4.5.136/unpkg/styled-components@5.3.11/dist/styled-components.js:1:37459)
151
+ at https://lowcode.example.com/vendors-loview-react-lowcode_node_modules_pnpm_emotion_css_11_11_2_node_modules_emotion_css_d-8c49fa.async.js:43819:73
152
+ at div
153
+ at x (https://10.4.5.136/unpkg/styled-components@5.3.11/dist/styled-components.js:1:37459)
154
+ at https://lowcode.example.com/vendors-loview-react-lowcode_node_modules_pnpm_emotion_css_11_11_2_node_modules_emotion_css_d-8c49fa.async.js:43819:73
155
+ at div
156
+ at x (https://10.4.5.136/unpkg/styled-components@5.3.11/dist/styled-components.js:1:37459)
157
+ at WorkspacePanel (https://lowcode.example.com/src_components_index_ts-src_components_DraggableModal_index_less.async.js:77175:23)
158
+ at div
159
+ at x (https://10.4.5.136/unpkg/styled-components@5.3.11/dist/styled-components.js:1:37459)
160
+ at div
161
+ at x (https://10.4.5.136/unpkg/styled-components@5.3.11/dist/styled-components.js:1:37459)
162
+ at DesignerPanel (https://lowcode.example.com/src_components_index_ts-src_components_DraggableModal_index_less.async.js:34067:24)
163
+ at https://lowcode.example.com/vendors-loview-react-lowcode_node_modules_pnpm_emotion_css_11_11_2_node_modules_emotion_css_d-8c49fa.async.js:43819:73
164
+ at main
165
+ at https://lowcode.example.com/vendors-node_modules_pnpm_ant-design_icons-svg_4_4_2_node_modules_ant-design_icons-svg_es_asn-d4fb4f.async.js:13551:18
166
+ at Content
167
+ at div
168
+ at https://lowcode.example.com/vendors-node_modules_pnpm_ant-design_icons-svg_4_4_2_node_modules_ant-design_icons-svg_es_asn-d4fb4f.async.js:13571:42
169
+ at Layout
170
+ at div
171
+ at https://lowcode.example.com/vendors-node_modules_pnpm_ant-design_icons-svg_4_4_2_node_modules_ant-design_icons-svg_es_asn-d4fb4f.async.js:13571:42
172
+ at Layout
173
+ at LocaleProvider (https://lowcode.example.com/vendors-node_modules_pnpm_ant-design_icons-svg_4_4_2_node_modules_ant-design_icons-svg_es_asn-d4fb4f.async.js:14086:5)
174
+ at MotionWrapper (https://lowcode.example.com/vendors-node_modules_pnpm_ant-design_icons-svg_4_4_2_node_modules_ant-design_icons-svg_es_asn-d4fb4f.async.js:11670:5)
175
+ at ProviderChildren (https://lowcode.example.com/vendors-node_modules_pnpm_ant-design_icons-svg_4_4_2_node_modules_ant-design_icons-svg_es_asn-d4fb4f.async.js:12124:5)
176
+ at ConfigProvider (https://lowcode.example.com/vendors-node_modules_pnpm_ant-design_icons-svg_4_4_2_node_modules_ant-design_icons-svg_es_asn-d4fb4f.async.js:12378:54)
177
+ at ThemeProvider (https://10.4.5.136/unpkg/styled-components@5.3.11/dist/styled-components.js:1:30129)
178
+ at SystemProvider (https://lowcode.example.com/mf-dep____vendor.7254a7da.async.js:110099:27)
179
+ at Designer (https://lowcode.example.com/src_components_index_ts-src_components_DraggableModal_index_less.async.js:34184:22)
180
+ at DesignerProvider (https://lowcode.example.com/p__Designer__index.async.js:23369:24)
181
+ at div
182
+ at DesignerView (https://lowcode.example.com/p__Designer__index.async.js:41676:73)
183
+ at Suspense
184
+ at RemoteComponent (https://lowcode.example.com/mf-dep_node_modules_cache_mfsu_mf-va__workspace_lowcode_lowcode-app-dev-platform_node_modules__pnpm_-097e60.e2d58b62.async.js:696:25)
185
+ at Routes (https://lowcode.example.com/mf-dep_node_modules_cache_mfsu_mf-va__workspace_lowcode_lowcode-app-dev-platform_node_modules__pnpm_-097e60.e2d58b62.async.js:202:76)
186
+ at Router (https://lowcode.example.com/vendors-node_modules_pnpm_react-router_6_3_0_react_18_1_0_node_modules_react-router_index_js.async.js:1678:15)
187
+ at BrowserRoutes (https://lowcode.example.com/mf-dep_node_modules_cache_mfsu_mf-va__workspace_lowcode_lowcode-app-dev-platform_node_modules__pnpm_-097e60.e2d58b62.async.js:162:23)
188
+ at r (https://lowcode.example.com/mf-dep_node_modules_cache_mfsu_mf-va__workspace_lowcode_lowcode-app-dev-platform_node_modules__pnpm_-097e60.e2d58b62.async.js:2736:7350)
189
+ at Provider (https://lowcode.example.com/src_umi_umi_ts.async.js:6510:21)
190
+ at InitialStateProvider (https://lowcode.example.com/src_umi_umi_ts.async.js:7508:64)
191
+ at Provider (https://lowcode.example.com/src_umi_umi_ts.async.js:7738:34)
192
+ at ProviderWrapper (https://lowcode.example.com/src_umi_umi_ts.async.js:7970:61)
193
+ at MotionWrapper (https://lowcode.example.com/vendors-node_modules_pnpm_ant-design_icons-svg_4_4_2_node_modules_ant-design_icons-svg_es_asn-d4fb4f.async.js:11670:5)
194
+ at ProviderChildren (https://lowcode.example.com/vendors-node_modules_pnpm_ant-design_icons-svg_4_4_2_node_modules_ant-design_icons-svg_es_asn-d4fb4f.async.js:12124:5)
195
+ at ConfigProvider (https://lowcode.example.com/vendors-node_modules_pnpm_ant-design_icons-svg_4_4_2_node_modules_ant-design_icons-svg_es_asn-d4fb4f.async.js:12378:54)
196
+ at AntdProvider (https://lowcode.example.com/src_umi_umi_ts.async.js:7170:23)
197
+ at Browser (https://lowcode.example.com/mf-dep_node_modules_cache_mfsu_mf-va__workspace_lowcode_lowcode-app-dev-platform_node_modules__pnpm_-097e60.e2d58b62.async.js:267:68)
198
+
199
+ Consider adding an error boundary to your tree to customize error handling behavior.
200
+ Visit https://reactjs.org/link/error-boundaries to learn more about error boundaries.
201
+ (anonymous) @ index.ts:6
202
+ /?systemId=LC0000004��n=true/#/designer:1 Uncaught (in promise) Error: Unknown node type: "Computed"
203
+ at cloneNodeInternal (cloneNode.js:49:1)
204
+ at cloneIfNode (cloneNode.js:16:1)
205
+ at cloneIfNodeOrArray (cloneNode.js:24:1)
206
+ at cloneNodeInternal (cloneNode.js:54:1)
207
+ at cloneIfNode (cloneNode.js:16:1)
208
+ at cloneIfNodeOrArray (cloneNode.js:24:1)
209
+ at cloneNodeInternal (cloneNode.js:54:1)
210
+ at cloneIfNode (cloneNode.js:16:1)
211
+ at cloneIfNodeOrArray (cloneNode.js:24:1)
212
+ at cloneNodeInternal (cloneNode.js:54:1)
213
+ at cloneIfNode (cloneNode.js:16:1)
214
+ at cloneIfNodeOrArray (cloneNode.js:24:1)
215
+ at cloneNodeInternal (cloneNode.js:54:1)
216
+ at cloneIfNode (cloneNode.js:16:1)
217
+ at cloneNode.js:22:1
218
+ at Array.map (<anonymous>)
219
+ at cloneIfNodeOrArray (cloneNode.js:22:1)
220
+ at cloneNodeInternal (cloneNode.js:54:1)
221
+ at cloneIfNode (cloneNode.js:16:1)
222
+ at cloneIfNodeOrArray (cloneNode.js:24:1)
223
+ at cloneNodeInternal (cloneNode.js:54:1)
224
+ at cloneIfNode (cloneNode.js:16:1)
225
+ at cloneNode.js:22:1
226
+ at Array.map (<anonymous>)
227
+ at cloneIfNodeOrArray (cloneNode.js:22:1)
228
+ at cloneNodeInternal (cloneNode.js:54:1)
229
+ at cloneIfNode (cloneNode.js:16:1)
230
+ at cloneIfNodeOrArray (cloneNode.js:24:1)
231
+ at cloneNodeInternal (cloneNode.js:54:1)
232
+ at cloneIfNode (cloneNode.js:16:1)
233
+ at cloneNode.js:22:1
234
+ at Array.map (<anonymous>)
235
+ at cloneIfNodeOrArray (cloneNode.js:22:1)
236
+ at cloneNodeInternal (cloneNode.js:54:1)
237
+ at cloneIfNode (cloneNode.js:16:1)
238
+ at cloneIfNodeOrArray (cloneNode.js:24:1)
239
+ at cloneNodeInternal (cloneNode.js:54:1)
240
+ at cloneIfNode (cloneNode.js:16:1)
241
+ at cloneNode.js:22:1
242
+ at Array.map (<anonymous>)
243
+ at cloneIfNodeOrArray (cloneNode.js:22:1)
244
+ at cloneNodeInternal (cloneNode.js:54:1)
245
+ at cloneIfNode (cloneNode.js:16:1)
246
+ at cloneIfNodeOrArray (cloneNode.js:24:1)
247
+ at cloneNodeInternal (cloneNode.js:54:1)
248
+ at cloneIfNode (cloneNode.js:16:1)
249
+ at cloneNode.js:22:1
250
+ at Array.map (<anonymous>)
251
+ at cloneIfNodeOrArray (cloneNode.js:22:1)
252
+ at cloneNodeInternal (cloneNode.js:54:1)
253
+ workspace.ts:1390 [Workspace] Saving files to IndexedDB cache...
254
+ workspace-cache.ts:188 [WorkspaceCache] Cached 483 files in 3444ms
255
+ workspace.ts:1397 [Workspace] Cache saved successfully
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lc-test3",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {