@appthen/cli 1.2.10 → 1.2.11

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 (122) hide show
  1. package/.gitignore +1 -0
  2. package/bin/main.js +45 -0
  3. package/dist/index.js +1108 -267
  4. package/package.json +1 -1
  5. package/tests/test-app/.appthen/shadow-space-100001-test-app-e99876b1.json +1406 -0
  6. package/tests/test-app/.appthen/shadow-space-unknown-user-test-app-e99876b1.json +1060 -0
  7. package/tests/test-app/.appthen/space-config.json +8 -0
  8. package/tests/test-app/docs/AI-Workflow.flow +112 -0
  9. package/tests/test-app/docs/Logic-1.flow +16 -0
  10. package/tests/test-app/docs/Logic.flow +16 -0
  11. package/tests/test-app/docs/Project-Blueprint-1.flow +119 -0
  12. package/tests/test-app/docs/Project-Blueprint.flow +119 -0
  13. package/tests/test-app/docs/README.md +3 -0
  14. package/tests/test-app/docs/claude.md +194 -0
  15. package/tests/test-app/docs/page_requirement_analysis.md +149 -0
  16. package/tests/test-app/docs//345/267/245/345/215/225/347/256/241/347/220/206/347/263/273/347/273/237/350/257/246/347/273/206/350/256/276/350/256/241.md +377 -0
  17. package/tests/test-app/src/apis/AddTodoPost.api.ts +42 -0
  18. package/tests/test-app/src/apis/DeleteTodoPost.api.ts +32 -0
  19. package/tests/test-app/src/apis/GetListPost.api.ts +38 -0
  20. package/tests/test-app/src/apis/TicketAttachmentUploadPost.api.ts +42 -0
  21. package/tests/test-app/src/apis/UpdateTodoPost.api.ts +46 -0
  22. package/tests/test-app/src/app.css +15 -0
  23. package/tests/test-app/src/cloud_functions/ticket|attachment|upload.node.ts +86 -0
  24. package/tests/test-app/src/cloud_functions/ticket|comment|add.node.ts +65 -0
  25. package/tests/test-app/src/cloud_functions/types|entity|Ticket.node.ts +88 -0
  26. package/tests/test-app/src/cloud_functions/types|entity|TicketAttachment.node.ts +70 -0
  27. package/tests/test-app/src/cloud_functions/types|entity|TicketCategory.node.ts +56 -0
  28. package/tests/test-app/src/cloud_functions/types|entity|TicketComment.node.ts +62 -0
  29. package/tests/test-app/src/cloud_functions/types|entity|TicketHistory.node.ts +74 -0
  30. package/tests/test-app/src/cloud_functions/types|entity|TicketPriority.node.ts +68 -0
  31. package/tests/test-app/src/cloud_functions/types|entity|TicketStatus.node.ts +63 -0
  32. package/tests/test-app/src/cloud_functions/types|models|CreateTicketParams.node.ts +20 -0
  33. package/tests/test-app/src/cloud_functions/types|models|TicketListParams.node.ts +30 -0
  34. package/tests/test-app/src/cloud_functions/types|models|UpdateTicketParams.node.ts +22 -0
  35. package/tests/test-app/src/components/Button.js +11 -0
  36. package/tests/test-app/src/components/MouduleDemoNzp.tsx +40 -0
  37. package/tests/test-app/src/components/Timeline.tsx +145 -0
  38. package/tests/test-app/src/index.ts +2 -0
  39. package/tests/test-app/src/modules/work_order_module/apis/TicketCommentAddPost.api.ts +48 -0
  40. package/tests/test-app/src/modules/work_order_module/apis/TicketCreatePost.api.ts +52 -0
  41. package/tests/test-app/src/modules/work_order_module/apis/TicketDeleteDelete.api.ts +39 -0
  42. package/tests/test-app/src/modules/work_order_module/apis/TicketDetailGet.api.ts +39 -0
  43. package/tests/test-app/src/modules/work_order_module/apis/TicketListGet.api.ts +61 -0
  44. package/tests/test-app/src/modules/work_order_module/apis/TicketUpdatePut.api.ts +57 -0
  45. package/tests/test-app/src/modules/work_order_module/apis/TrainDoorFaultListGet.ts +76 -0
  46. package/tests/test-app/src/modules/work_order_module/apis/TrainDoorListGet.ts +76 -0
  47. package/tests/test-app/src/modules/work_order_module/apis/TrainDoorOperationRecordsGet.ts +284 -0
  48. package/tests/test-app/src/modules/work_order_module/apis/TrainDoorStatisticsGet.ts +96 -0
  49. package/tests/test-app/src/modules/work_order_module/cloud_function/category|list.node.ts +40 -0
  50. package/tests/test-app/src/modules/work_order_module/cloud_function/priority|list.node.ts +26 -0
  51. package/tests/test-app/src/modules/work_order_module/cloud_function/status|list.node.ts +26 -0
  52. package/tests/test-app/src/modules/work_order_module/cloud_function/ticket|create.node.ts +54 -0
  53. package/tests/test-app/src/modules/work_order_module/cloud_function/ticket|delete.node.ts +55 -0
  54. package/tests/test-app/src/modules/work_order_module/cloud_function/ticket|detail.node.ts +65 -0
  55. package/tests/test-app/src/modules/work_order_module/cloud_function/ticket|list.node.ts +85 -0
  56. package/tests/test-app/src/modules/work_order_module/cloud_function/ticket|update.node.ts +73 -0
  57. package/tests/test-app/src/modules/work_order_module/data_model/Ticket.m.ts +85 -0
  58. package/tests/test-app/src/modules/work_order_module/data_model/TicketCategory.m.ts +53 -0
  59. package/tests/test-app/src/modules/work_order_module/data_model/TicketStatus.m.ts +60 -0
  60. package/tests/test-app/src/modules/work_order_module//345/267/245/345/215/225/347/263/273/347/273/237/344/272/247/345/223/201/350/256/276/350/256/241/346/226/207/346/241/243.md +301 -0
  61. package/tests/test-app/src/modules/work_order_module//345/267/245/345/215/225/347/263/273/347/273/237/345/274/200/345/217/221/344/273/273/345/212/241/345/210/206/345/267/245/346/226/207/346/241/243.md +345 -0
  62. package/tests/test-app/src/pages/SLAManagement.tsx +668 -0
  63. package/tests/test-app/src/pages/TicketCreate.tsx +27 -0
  64. package/tests/test-app/src/pages/TicketDetail.tsx +27 -0
  65. package/tests/test-app/src/pages/TicketList.tsx +27 -0
  66. package/tests/test-app/src/pages/TicketManagementPage.tsx +1238 -0
  67. package/tests/test-app/src/pages/VisualAIIDEUpgrade.tsx +245 -0
  68. package/tests/test-app/src/pages/appthen_guide/ComponentTreeUnderstanding.tsx +26 -0
  69. package/tests/test-app/src/pages/appthen_guide/DataBindingLearning.tsx +26 -0
  70. package/tests/test-app/src/pages/back-end/adminRootLayout.tsx +155 -0
  71. package/tests/test-app/src/pages/back-end/adminRootLayout10.tsx +157 -0
  72. package/tests/test-app/src/pages/back-end/adminRootLayout2.tsx +156 -0
  73. package/tests/test-app/src/pages/back-end/adminRootLayout3.tsx +156 -0
  74. package/tests/test-app/src/pages/back-end/adminRootLayout4.tsx +157 -0
  75. package/tests/test-app/src/pages/back-end/adminRootLayout5.tsx +157 -0
  76. package/tests/test-app/src/pages/back-end/adminRootLayout6.tsx +157 -0
  77. package/tests/test-app/src/pages/back-end/adminRootLayout7.tsx +157 -0
  78. package/tests/test-app/src/pages/back-end/adminRootLayout8.tsx +157 -0
  79. package/tests/test-app/src/pages/back-end/adminRootLayout9.tsx +157 -0
  80. package/tests/test-app/src/pages/back-end/backgroundManagementSystem.css +5 -0
  81. package/tests/test-app/src/pages/back-end/backgroundManagementSystem.tsx +1745 -0
  82. package/tests/test-app/src/pages/component/WorkOrderCard.tsx +140 -0
  83. package/tests/test-app/src/pages/cover.tsx +42 -0
  84. package/tests/test-app/src/pages/data_dashboard/blueBrightGreenTechnologyWind.css +181 -0
  85. package/tests/test-app/src/pages/data_dashboard/blueBrightGreenTechnologyWind.tsx +225 -0
  86. package/tests/test-app/src/pages/data_dashboard/blueLargeScreen.css +181 -0
  87. package/tests/test-app/src/pages/data_dashboard/blueLargeScreen.tsx +138 -0
  88. package/tests/test-app/src/pages/data_dashboard/component_library/BlueBrightGreenBorder.tsx +47 -0
  89. package/tests/test-app/src/pages/data_dashboard/component_library/FullScreenContainer.tsx +133 -0
  90. package/tests/test-app/src/pages/description_of_mock_interface.md +32 -0
  91. package/tests/test-app/src/pages/digitalLargeScreen.css +181 -0
  92. package/tests/test-app/src/pages/digitalLargeScreen.tsx +1417 -0
  93. package/tests/test-app/src/pages/mobile_terminal/PersonalCenter.css +3 -0
  94. package/tests/test-app/src/pages/mobile_terminal/PersonalCenter.tsx +362 -0
  95. package/tests/test-app/src/pages/mobile_terminal/WorkOrderHomepage.tsx +337 -0
  96. package/tests/test-app/src/pages/mobile_terminal/newWorkOrder.tsx +224 -0
  97. package/tests/test-app/src/pages/mobile_terminal/tabbar.tsx +67 -0
  98. package/tests/test-app/src/pages/mobile_terminal/uiHandsOnPractice.tsx +638 -0
  99. package/tests/test-app/src/pages/mobile_terminal/workOrderDetails.tsx +346 -0
  100. package/tests/test-app/src/pages/mobile_terminal/workOrderPage.tsx +345 -0
  101. package/tests/test-app/src/pages/testPage.css +3 -0
  102. package/tests/test-app/src/pages/testPage.tsx +158 -0
  103. package/tests/test-app/src/pages/web_version/website.css +205 -0
  104. package/tests/test-app/src/pages/web_version/website.tsx +1066 -0
  105. package/tests/test-app/src/pages//345/276/205/345/212/236.apidoc.json +336 -0
  106. package/tests/test-app/src/project.json +1120 -0
  107. package/tests/test-app/src/store/global.store.ts +10 -0
  108. package/tests/test-app/src/types/CreateTicketParams.m.ts +20 -0
  109. package/tests/test-app/src/types/SLAPolicy.ts +50 -0
  110. package/tests/test-app/src/types/Ticket.ts +68 -0
  111. package/tests/test-app/src/types/TicketAttachment.m.ts +67 -0
  112. package/tests/test-app/src/types/TicketComment.m.ts +59 -0
  113. package/tests/test-app/src/types/TicketEvaluation.ts +44 -0
  114. package/tests/test-app/src/types/TicketHistory.m.ts +71 -0
  115. package/tests/test-app/src/types/TicketListParams.m.ts +30 -0
  116. package/tests/test-app/src/types/TicketPriority.m.ts +65 -0
  117. package/tests/test-app/src/types/TicketRecord.ts +47 -0
  118. package/tests/test-app/src/types/TrainDoor.ts +284 -0
  119. package/tests/test-app/src/types/UpdateTicketParams.m.ts +22 -0
  120. package/tests/test-app/src/utils/__afterRequest.util.ts +3 -0
  121. package/tests/test-app/src/utils/__beforeRequest.util.ts +10 -0
  122. package/tests/test-app/src/utils/testGlobalAction.util.ts +7 -0
@@ -0,0 +1,1120 @@
1
+ {
2
+ "type": "web",
3
+ "title": "上手指南临摹项目",
4
+ "description": "",
5
+ "width": 400,
6
+ "height": 250,
7
+ "packages": {
8
+ "web": [
9
+ {
10
+ "package": "moment",
11
+ "version": "2.24.0",
12
+ "urls": [
13
+ "http://cdn.appthen.com/editor/npm/moment/2.24.0/min/moment.min.js"
14
+ ],
15
+ "library": "moment",
16
+ "moduleType": "umd",
17
+ "esmBundle": true
18
+ },
19
+ {
20
+ "package": "lodash",
21
+ "library": "_",
22
+ "version": "4.6.1",
23
+ "urls": [
24
+ "http://cdn.appthen.com/editor/npm/lodash/4.6.1/lodash.min.js"
25
+ ],
26
+ "moduleType": "umd",
27
+ "esmBundle": true
28
+ },
29
+ {
30
+ "title": "fusion 组件库",
31
+ "package": "@alifd/next",
32
+ "version": "1.26.4",
33
+ "urls": [
34
+ "http://cdn.appthen.com/editor/npm/alifd__next/1.26.4/resetv2.min.css",
35
+ "http://cdn.appthen.com/editor/npm/alifd__next/1.26.4/next-with-locales.min.js"
36
+ ],
37
+ "library": "Next",
38
+ "moduleType": "umd",
39
+ "esmBundle": true
40
+ },
41
+ {
42
+ "urls": [
43
+ "http://cdn.appthen.com/material/118294/@appthen/react/1.0.13/view.js",
44
+ "http://cdn.appthen.com/material/118294/@appthen/react/1.0.13/view.css"
45
+ ],
46
+ "package": "@appthen/react",
47
+ "title": "Appthen React",
48
+ "library": "AppthenReact",
49
+ "": "https://cdn.appthen.com/material/118294/@appthen/react/1.0.13/view.css",
50
+ "version": "1.0.21",
51
+ "moduleType": "umd",
52
+ "esmBundle": true
53
+ },
54
+ {
55
+ "package": "iconfont-icons",
56
+ "urls": "https://cdn.appthen.com/editor/npm/t/font_2369445_ukrtsovd92r.js",
57
+ "moduleType": "umd",
58
+ "esmBundle": true
59
+ },
60
+ {
61
+ "urls": [
62
+ "http://cdn.appthen.com/editor/npm/antd/5.25.4/reset.min.css",
63
+ "http://cdn.appthen.com/editor/antd/5.14.0/dayjs.min.js",
64
+ "http://cdn.appthen.com/editor/antd/5.22.7/antd.min.js"
65
+ ],
66
+ "package": "antd",
67
+ "version": "5.25.4",
68
+ "library": "antd",
69
+ "": "https://cdn.appthen.com/editor/npm/antd/5.25.4/reset.min.css",
70
+ "moduleType": "umd",
71
+ "esmBundle": true
72
+ },
73
+ {
74
+ "urls": [
75
+ "http://cdn.appthen.com/material/118159/@appthen/antd/5.25.6/view.js"
76
+ ],
77
+ "package": "@appthen/antd",
78
+ "version": "5.14.9",
79
+ "title": "Appthen Antd",
80
+ "library": "AppthenAntd",
81
+ "": "https://cdn.appthen.com/material/118159/@appthen/antd/5.25.6/view.js",
82
+ "moduleType": "umd",
83
+ "esmBundle": true
84
+ },
85
+ {
86
+ "package": "@alifd/layout",
87
+ "version": "2.0.12",
88
+ "library": "AlifdLayout",
89
+ "urls": [
90
+ "http://cdn.appthen.com/editor/npm/@alifd/layout@2.0.12/dist/AlifdLayout.js",
91
+ "http://cdn.appthen.com/editor/npm/@alifd/layout@2.0.12/dist/AlifdLayout.css"
92
+ ],
93
+ "editUrls": [
94
+ "http://cdn.appthen.com/editor/npm/@alifd/layout@2.0.12/build/lowcode/view.js",
95
+ "http://cdn.appthen.com/editor/npm/@alifd/layout@2.0.12/build/lowcode/view.css"
96
+ ],
97
+ "moduleType": "umd",
98
+ "esmBundle": true
99
+ },
100
+ {
101
+ "urls": [
102
+ "http://cdn.appthen.com/editor/npm/antd/5.25.4/reset.min.css",
103
+ "http://cdn.appthen.com/editor/antd/5.14.0/dayjs.min.js",
104
+ "http://cdn.appthen.com/editor/antd/5.22.7/antd.min.js"
105
+ ],
106
+ "package": "antd",
107
+ "version": "5.25.4",
108
+ "library": "antd",
109
+ "": "https://cdn.appthen.com/editor/npm/antd/5.25.4/reset.min.css",
110
+ "moduleType": "umd",
111
+ "esmBundle": true
112
+ },
113
+ {
114
+ "urls": [
115
+ "http://cdn.appthen.com/material/118159/@appthen/antd-pro/1.0.10/view.js"
116
+ ],
117
+ "package": "@appthen/antd-pro",
118
+ "library": "AppthenAntdPro",
119
+ "": "https://cdn.appthen.com/material/118159/@appthen/antd-pro/1.0.10/view.js",
120
+ "title": "antd pro components",
121
+ "version": "1.0.10",
122
+ "moduleType": "umd",
123
+ "esmBundle": true
124
+ },
125
+ {
126
+ "urls": [
127
+ "http://cdn.appthen.com/editor/npm/antd/5.9.0/dayjs.min.js",
128
+ "http://cdn.appthen.com/editor/npm/dayjs/locale/zh-cn.min.js",
129
+ "http://cdn.appthen.com/editor/npm/dayjs/weekday.min.js",
130
+ "http://cdn.appthen.com/editor/npm/dayjs/localeData.min.js"
131
+ ],
132
+ "": "https://cdn.appthen.com/editor/npm/dayjs/weekday.min.js",
133
+ "package": "dayjs",
134
+ "title": "Dayjs",
135
+ "version": "1.11.10",
136
+ "library": "dayjs",
137
+ "moduleType": "umd",
138
+ "esmBundle": true
139
+ },
140
+ {
141
+ "urls": [
142
+ "http://cdn.appthen.com/material/118294/@appthen/echarts/5.30.6/view.js"
143
+ ],
144
+ "package": "@appthen/echarts",
145
+ "title": "Echarts Component",
146
+ "library": "AppthenEcharts",
147
+ "": "https://cdn.appthen.com/material/118294/@appthen/echarts/5.30.6/view.js",
148
+ "version": "5.30.6",
149
+ "moduleType": "umd",
150
+ "esmBundle": true
151
+ },
152
+ {
153
+ "urls": [
154
+ "http://cdn.appthen.com/editor/npm/echarts/echarts.min.js"
155
+ ],
156
+ "package": "echarts",
157
+ "": "https://cdn.appthen.com/editor/npm/echarts/echarts.min.js",
158
+ "library": "echarts",
159
+ "title": "Echarts",
160
+ "version": "5.5.0",
161
+ "moduleType": "umd",
162
+ "esmBundle": true
163
+ },
164
+ {
165
+ "library": "clsx",
166
+ "package": "clsx",
167
+ "title": "clsx",
168
+ "version": "2.1.1",
169
+ "urls": [
170
+ ""
171
+ ],
172
+ "destructuring": true,
173
+ "moduleType": "esm",
174
+ "esmBundle": true
175
+ },
176
+ {
177
+ "library": "genai",
178
+ "package": "@google/genai",
179
+ "title": "@google/genai",
180
+ "version": "1.31.0",
181
+ "urls": [
182
+ ""
183
+ ],
184
+ "destructuring": true,
185
+ "moduleType": "esm",
186
+ "esmBundle": true
187
+ }
188
+ ],
189
+ "app": [
190
+ {
191
+ "package": "moment",
192
+ "version": "2.24.0",
193
+ "urls": [
194
+ "http://cdn.appthen.com/editor/npm/moment/2.24.0/min/moment.min.js"
195
+ ],
196
+ "library": "moment",
197
+ "moduleType": "umd",
198
+ "esmBundle": true
199
+ },
200
+ {
201
+ "package": "lodash",
202
+ "library": "_",
203
+ "version": "4.6.1",
204
+ "urls": [
205
+ "http://cdn.appthen.com/editor/npm/lodash/4.6.1/lodash.min.js"
206
+ ],
207
+ "moduleType": "umd",
208
+ "esmBundle": true
209
+ },
210
+ {
211
+ "title": "fusion 组件库",
212
+ "package": "@alifd/next",
213
+ "version": "1.26.4",
214
+ "urls": [
215
+ "http://cdn.appthen.com/editor/npm/alifd__next/1.26.4/resetv2.min.css",
216
+ "http://cdn.appthen.com/editor/npm/alifd__next/1.26.4/next-with-locales.min.js"
217
+ ],
218
+ "library": "Next",
219
+ "moduleType": "umd",
220
+ "esmBundle": true
221
+ },
222
+ {
223
+ "urls": [
224
+ "http://cdn.appthen.com/editor/npm/antd/5.9.0/dayjs.min.js",
225
+ "http://cdn.appthen.com/editor/npm/dayjs/locale/zh-cn.min.js",
226
+ "http://cdn.appthen.com/editor/npm/dayjs/weekday.min.js",
227
+ "http://cdn.appthen.com/editor/npm/dayjs/localeData.min.js"
228
+ ],
229
+ "": "https://cdn.appthen.com/editor/npm/dayjs/weekday.min.js",
230
+ "package": "dayjs",
231
+ "title": "Dayjs",
232
+ "version": "1.11.10",
233
+ "library": "dayjs",
234
+ "moduleType": "umd",
235
+ "esmBundle": true
236
+ },
237
+ {
238
+ "urls": [
239
+ "http://cdn.appthen.com/material/118294/cross-ui/4.1.12/view.js",
240
+ "http://cdn.appthen.com/material/118294/cross-ui/4.1.12/view.css",
241
+ "http://cdn.appthen.com/editor/assets/tailwind/index-DhXyGtyJ-250509.css"
242
+ ],
243
+ "package": "cross-ui",
244
+ "title": "Appthen CrossUI",
245
+ "": "https://cdn.appthen.com/material/118294/cross-ui/4.1.12/view.css",
246
+ "library": "BizComps",
247
+ "version": "4.1.12",
248
+ "moduleType": "umd",
249
+ "esmBundle": true
250
+ },
251
+ {
252
+ "library": "wx",
253
+ "package": "weixin-js-sdk",
254
+ "title": "Weixin H5 JS-SDK",
255
+ "version": "1.6.5",
256
+ "urls": [
257
+ "http://res.wx.qq.com/open/js/jweixin-1.6.0.js"
258
+ ],
259
+ "destructuring": true,
260
+ "": "https://res.wx.qq.com/open/js/jweixin-1.6.0.js",
261
+ "moduleType": "umd",
262
+ "esmBundle": true
263
+ },
264
+ {
265
+ "urls": [
266
+ "http://cdn.appthen.com/editor/npm/echarts/echarts.min.js"
267
+ ],
268
+ "package": "echarts",
269
+ "": "https://cdn.appthen.com/editor/npm/echarts/echarts.min.js",
270
+ "library": "echarts",
271
+ "title": "Echarts",
272
+ "version": "5.5.0",
273
+ "moduleType": "umd",
274
+ "esmBundle": true
275
+ },
276
+ {
277
+ "library": "clsx",
278
+ "package": "clsx",
279
+ "title": "clsx",
280
+ "version": "2.1.1",
281
+ "urls": [
282
+ ""
283
+ ],
284
+ "destructuring": true,
285
+ "moduleType": "esm",
286
+ "esmBundle": true
287
+ },
288
+ {
289
+ "library": "genai",
290
+ "package": "@google/genai",
291
+ "title": "@google/genai",
292
+ "version": "1.31.0",
293
+ "urls": [
294
+ ""
295
+ ],
296
+ "destructuring": true,
297
+ "moduleType": "esm",
298
+ "esmBundle": true
299
+ }
300
+ ]
301
+ },
302
+ "envInfo": {
303
+ "list": [
304
+ {
305
+ "id": "qIITFMHqDUxE8HYZNuicG",
306
+ "name": "开发环境",
307
+ "alias": "dev",
308
+ "data": {
309
+ "HostDomain": "http://106.13.174.178:8001/",
310
+ "accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc1JlZnJlc2giOmZhbHNlLCJpZCI6MSwidGVuYW50SWQiOm51bGwsImlhdCI6MTc1MDQwNDk0NCwiZXhwIjoyMDY1NzY0OTQ0fQ.ksKiI0bwJ9d1NaQu-kvVdmdot62myiAytuzpETjIgmI",
311
+ "BaseURL": "http://106.13.174.178:8001/"
312
+ }
313
+ }
314
+ ]
315
+ },
316
+ "appConfig": {
317
+ "indexPage": "cover",
318
+ "reactVersion": "18"
319
+ },
320
+ "themes": {
321
+ "default": {
322
+ "colorPrimary": "#1677ff",
323
+ "colorSuccess": "#52C41A",
324
+ "colorWarning": "#FAAD14",
325
+ "colorError": "#FF4D4F",
326
+ "colorTextBase": "#000000",
327
+ "colorBgBase": "#ffffff",
328
+ "colorInfo": "#1677ff"
329
+ }
330
+ },
331
+ "assets": [
332
+ {
333
+ "package": {
334
+ "urls": [
335
+ "https://cdn.appthen.com/editor/npm/antd/5.25.4/reset.min.css",
336
+ "https://cdn.appthen.com/editor/antd/5.14.0/dayjs.min.js",
337
+ "https://cdn.appthen.com/editor/antd/5.22.7/antd.min.js"
338
+ ],
339
+ "package": "antd",
340
+ "version": "5.25.4",
341
+ "library": "antd",
342
+ "": "https://cdn.appthen.com/editor/npm/antd/5.25.4/reset.min.css"
343
+ },
344
+ "enable": true,
345
+ "advanced": {
346
+ "replacePackage": "antd,@ant-design/icons,@seada/antd-materials",
347
+ "frames": [
348
+ "web"
349
+ ],
350
+ "clients": [
351
+ "web"
352
+ ],
353
+ "prompt": "辅助--测试--说明"
354
+ },
355
+ "utils": [
356
+ {
357
+ "name": "message",
358
+ "npm": {
359
+ "package": "antd",
360
+ "exportName": "",
361
+ "subName": "message"
362
+ }
363
+ },
364
+ {
365
+ "name": "notification",
366
+ "npm": {
367
+ "package": "antd",
368
+ "subName": "notification"
369
+ }
370
+ },
371
+ {
372
+ "name": "Modal",
373
+ "npm": {
374
+ "package": "antd",
375
+ "subName": "Modal"
376
+ }
377
+ }
378
+ ],
379
+ "components": [],
380
+ "projectId": "65acd26b224ea8a3b333a552"
381
+ },
382
+ {
383
+ "package": {
384
+ "urls": [
385
+ "https://cdn.appthen.com/material/118159/@appthen/antd/5.25.6/view.js"
386
+ ],
387
+ "package": "@appthen/antd",
388
+ "version": "5.14.9",
389
+ "title": "Appthen Antd",
390
+ "library": "AppthenAntd",
391
+ "": "https://cdn.appthen.com/material/118159/@appthen/antd/5.25.6/view.js"
392
+ },
393
+ "enable": true,
394
+ "metaFile": {
395
+ "exportName": "AppthenAntdMeta",
396
+ "url": "https://cdn.appthen.com/material/118159/@appthen/antd/5.25.6/meta.js"
397
+ },
398
+ "advanced": {
399
+ "replacePackage": "@alilc/antd-lowcode-materials",
400
+ "frames": [
401
+ "web"
402
+ ],
403
+ "clients": [
404
+ "web"
405
+ ],
406
+ "prompt": "辅助--测试--说明"
407
+ },
408
+ "utils": [],
409
+ "components": [
410
+ {
411
+ "id": "0791796zdysmuoq",
412
+ "componentName": "AutoComplete",
413
+ "npm": {
414
+ "package": ""
415
+ },
416
+ "title": "自动完成",
417
+ "configure": {
418
+ "props": [],
419
+ "supports": {
420
+ "events": []
421
+ },
422
+ "advanced": {
423
+ "fixFunctionCompBug": true,
424
+ "publicMethods": [],
425
+ "fastBindConfig": {
426
+ "inputField": "value",
427
+ "outField": "onChange",
428
+ "outValueField": "value"
429
+ }
430
+ }
431
+ },
432
+ "icon": "FpzgBSHt0TVpo-oRiPBuv_t4AbPx",
433
+ "screenshot": ""
434
+ },
435
+ {
436
+ "id": "1447580xtqvmzug",
437
+ "componentName": "Input",
438
+ "npm": {
439
+ "package": ""
440
+ },
441
+ "title": "输入框",
442
+ "configure": {
443
+ "props": [],
444
+ "supports": {
445
+ "style": true,
446
+ "className": true,
447
+ "events": [
448
+ {
449
+ "id": "2201257pyizvbqn",
450
+ "name": "onChange",
451
+ "template": "onChange(e,${extParams}){\\n// 输入框内容变化时的回调\\nconsole.log('onChange', e.target.value);}",
452
+ "description": "输入框内容变化时的回调"
453
+ },
454
+ {
455
+ "id": "2233559qmoktgab",
456
+ "name": "onPressEnter",
457
+ "description": "按下回车的回调",
458
+ "template": "onPressEnter(e,${extParams}){\\n// 按下回车的回调\\nconsole.log('onPressEnter',e);}"
459
+ },
460
+ {
461
+ "id": "2250379siqtgdpb",
462
+ "description": "获取焦点回调",
463
+ "name": "onFocus",
464
+ "template": "onFocus(e,${extParams}){\\n// 获取焦点回调\\nconsole.log('onFocus',e);}"
465
+ },
466
+ {
467
+ "id": "2281927lxtqkgah",
468
+ "name": "onKeyDown",
469
+ "description": "按键按下时的回调",
470
+ "template": "onKeyDown(e,${extParams}){\\n// 按键按下时的回调\\nconsole.log('onKeyDown',e);}"
471
+ },
472
+ {
473
+ "id": "2299858wsgtikrq",
474
+ "name": "onKeyPress",
475
+ "description": "按键按下后的回调",
476
+ "template": "onKeyPress(e,${extParams}){\\n// 按键按下后的回调\\nconsole.log('onKeyPress',e);}"
477
+ },
478
+ {
479
+ "id": "2317202fveizgxk",
480
+ "name": "onKeyUp",
481
+ "description": "按键释放回调",
482
+ "template": "onKeyUp(e,${extParams}){\\n// 按键释放回调\\nconsole.log('onKeyUp',e);}"
483
+ },
484
+ {
485
+ "id": "2329418udwxnysp",
486
+ "name": "onBlur",
487
+ "description": "按键释放回调",
488
+ "template": "onBlur(e,${extParams}){\\n// 按键释放回调\\nconsole.log('onBlur',e);}"
489
+ }
490
+ ]
491
+ },
492
+ "advanced": {
493
+ "fixFunctionCompBug": true,
494
+ "publicMethods": [],
495
+ "fastBindConfig": {
496
+ "inputField": "value",
497
+ "outField": "onChange",
498
+ "outValueField": "target.value"
499
+ }
500
+ }
501
+ },
502
+ "icon": "FrIbwqhsPOeTj4IJ1M8-Ht94NbtR",
503
+ "screenshot": ""
504
+ },
505
+ {
506
+ "id": "9051413wrxchyim",
507
+ "componentName": "Input.Search",
508
+ "npm": {
509
+ "package": ""
510
+ },
511
+ "title": "搜索框",
512
+ "configure": {
513
+ "props": [],
514
+ "supports": {
515
+ "events": [
516
+ {
517
+ "id": "9073812elvxskyd",
518
+ "name": "onChange",
519
+ "description": "当值改变时"
520
+ },
521
+ {
522
+ "id": "9079736gyruvktf",
523
+ "name": "onPressEnter",
524
+ "description": "当按回车时"
525
+ }
526
+ ]
527
+ },
528
+ "advanced": {
529
+ "publicMethods": [],
530
+ "fastBindConfig": {
531
+ "outValueField": "target.value",
532
+ "inputField": "value",
533
+ "outField": "onChange"
534
+ }
535
+ }
536
+ },
537
+ "icon": "FlkLB7HfCR32rXdAt7F1OJOmst4N"
538
+ },
539
+ {
540
+ "id": "5176886tgvznihp",
541
+ "componentName": "antdImage",
542
+ "npm": {
543
+ "package": "",
544
+ "exportName": "Image"
545
+ },
546
+ "title": "图片",
547
+ "configure": {
548
+ "props": [
549
+ {
550
+ "name": "url",
551
+ "title": {
552
+ "label": "图片地址",
553
+ "tip": "图片地址"
554
+ },
555
+ "propType": {
556
+ "type": "string"
557
+ },
558
+ "id": "5379243mxtdsywa",
559
+ "type": "string",
560
+ "setter": "StringSetter",
561
+ "default": "https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
562
+ },
563
+ {
564
+ "name": "src",
565
+ "title": {
566
+ "label": "图片描述",
567
+ "tip": "图片描述"
568
+ },
569
+ "propType": {
570
+ "type": "string"
571
+ },
572
+ "id": "5379243szpormbg",
573
+ "setter": "StringSetter",
574
+ "type": "string",
575
+ "default": "https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
576
+ },
577
+ {
578
+ "name": "fallback\t",
579
+ "title": {
580
+ "label": "容错地址",
581
+ "tip": "加载失败容错地址\t"
582
+ },
583
+ "propType": "string",
584
+ "id": "5379243zrnfkqys",
585
+ "setter": "StringSetter",
586
+ "type": "string"
587
+ },
588
+ {
589
+ "name": "preview",
590
+ "title": {
591
+ "label": "支持预览",
592
+ "tip": "支持预览"
593
+ },
594
+ "defaultValue": true,
595
+ "propType": "bool",
596
+ "id": "5379243vwhoqtdn",
597
+ "setter": "StringSetter",
598
+ "type": "string"
599
+ },
600
+ {
601
+ "name": "placeholder",
602
+ "title": {
603
+ "label": "加载占位",
604
+ "tip": "加载占位,为 true 时使用默认占位\t"
605
+ },
606
+ "propType": "bool",
607
+ "id": "5379243wlexpknd",
608
+ "setter": "StringSetter",
609
+ "type": "string"
610
+ },
611
+ {
612
+ "name": "width",
613
+ "title": {
614
+ "label": "宽度",
615
+ "tip": "宽度"
616
+ },
617
+ "propType": "number",
618
+ "id": "5379243wbgqfrzl",
619
+ "setter": "StringSetter",
620
+ "type": "string"
621
+ },
622
+ {
623
+ "name": "height",
624
+ "title": {
625
+ "label": "高度",
626
+ "tip": "高度"
627
+ },
628
+ "propType": "number",
629
+ "id": "5379243ogmigtlv",
630
+ "setter": "StringSetter",
631
+ "type": "string"
632
+ }
633
+ ],
634
+ "supports": {
635
+ "events": []
636
+ },
637
+ "advanced": {
638
+ "publicMethods": []
639
+ }
640
+ },
641
+ "screenshot": "FjumCHcf5CtUF63oa5sN--59XWqL",
642
+ "icon": "FjumCHcf5CtUF63oa5sN--59XWqL",
643
+ "group": "默认分组",
644
+ "category": "数据展示"
645
+ },
646
+ {
647
+ "id": "8408591slhowkax",
648
+ "componentName": "antdModal",
649
+ "npm": {
650
+ "package": "",
651
+ "exportName": "Modal"
652
+ },
653
+ "title": "对话框",
654
+ "configure": {
655
+ "props": [],
656
+ "component": {
657
+ "isContainer": true,
658
+ "isModal": true
659
+ },
660
+ "supports": {
661
+ "style": true,
662
+ "className": true,
663
+ "events": []
664
+ },
665
+ "advanced": {
666
+ "publicMethods": []
667
+ }
668
+ }
669
+ }
670
+ ],
671
+ "projectId": "65acd26b224ea8a3b333a552"
672
+ },
673
+ {
674
+ "package": {
675
+ "urls": [
676
+ "https://cdn.appthen.com/material/118159/@appthen/antd-pro/1.0.10/view.js"
677
+ ],
678
+ "package": "@appthen/antd-pro",
679
+ "library": "AppthenAntdPro",
680
+ "": "https://cdn.appthen.com/material/118159/@appthen/antd-pro/1.0.10/view.js",
681
+ "title": "antd pro components",
682
+ "version": "1.0.10"
683
+ },
684
+ "enable": true,
685
+ "metaFile": {
686
+ "exportName": "AppthenAntdProMeta",
687
+ "url": "https://cdn.appthen.com/material/118159/@appthen/antd-pro/1.0.10/meta.js"
688
+ },
689
+ "advanced": {
690
+ "replacePackage": "@seada/antd-materials",
691
+ "frames": [
692
+ "web"
693
+ ],
694
+ "clients": [
695
+ "web"
696
+ ],
697
+ "prompt": "--- 此组件库是对 @ant-design/pro-components 组件库的封装, 大多数能力保持一致的\n---- ProTable 组件是这个系统的核心组件\n------- [重要] columns 参数中的 render 方法必须范围组件节点,不许返回字符串(可用Text组件包裹)\n---------- 错误示例\n{\n render: (charge) => `¥${(charge / 100).toFixed(2)}`\n},\n---------- 正确示例 [重要]\n{\n render: (charge) => <Text>{`¥${(charge / 100).toFixed(2)}`}</Text>\n},\n\n------- toolBarRender={(currentPageData) => (<Space>...</Space>)} 仅可返回单节点,多个组件请用View或 Space 包裹, 启用 toolBarRender 后,需要同时设置 toolBarRenderOpen 为 true [重要][重要][重要]"
698
+ },
699
+ "utils": [],
700
+ "components": [],
701
+ "projectId": "65acd26b224ea8a3b333a552"
702
+ },
703
+ {
704
+ "package": {
705
+ "urls": [
706
+ "https://cdn.appthen.com/material/118294/@appthen/react/1.0.13/view.js",
707
+ "https://cdn.appthen.com/material/118294/@appthen/react/1.0.13/view.css"
708
+ ],
709
+ "package": "@appthen/react",
710
+ "title": "Appthen React",
711
+ "library": "AppthenReact",
712
+ "": "https://cdn.appthen.com/material/118294/@appthen/react/1.0.13/view.css",
713
+ "version": "1.0.21"
714
+ },
715
+ "enable": true,
716
+ "metaFile": {
717
+ "url": "https://cdn.appthen.com/material/118294/@appthen/react/1.0.13/meta.js",
718
+ "exportName": "AppthenReactMeta"
719
+ },
720
+ "advanced": {
721
+ "replacePackage": "@disscode/react",
722
+ "frames": [
723
+ "web"
724
+ ],
725
+ "clients": [
726
+ "web"
727
+ ],
728
+ "prompt": "重要提醒:\nView 组件就是div组件,不是React Native的View组件,没有默认的Flex属性\nText 组件就是 span组件,<View><Text>a</Text><Text>b</Text></View> 默认是横向排列,不会是竖向排列",
729
+ "extendCode": "\nimport cloneDeep from 'lodash/cloneDeep';\nimport debounce from 'lodash/debounce';\nimport orderBy from 'lodash/orderBy';\n\nexport const _ = {\n cloneDeep,\n debounce,\n orderBy,\n};"
730
+ },
731
+ "utils": [],
732
+ "components": [],
733
+ "projectId": "662df2c7c9a85328fb3a953f"
734
+ },
735
+ {
736
+ "package": {
737
+ "urls": [
738
+ "https://cdn.appthen.com/editor/npm/antd/5.9.0/dayjs.min.js",
739
+ "https://cdn.appthen.com/editor/npm/dayjs/locale/zh-cn.min.js",
740
+ "https://cdn.appthen.com/editor/npm/dayjs/weekday.min.js",
741
+ "https://cdn.appthen.com/editor/npm/dayjs/localeData.min.js"
742
+ ],
743
+ "": "https://cdn.appthen.com/editor/npm/dayjs/weekday.min.js",
744
+ "package": "dayjs",
745
+ "title": "Dayjs",
746
+ "version": "1.11.10",
747
+ "library": "dayjs"
748
+ },
749
+ "enable": true,
750
+ "utils": [
751
+ {
752
+ "name": "dayjs",
753
+ "npm": {
754
+ "package": "dayjs",
755
+ "exportName": "default"
756
+ }
757
+ }
758
+ ],
759
+ "components": [],
760
+ "projectId": "662df2c7c9a85328fb3a953f"
761
+ },
762
+ {
763
+ "package": {
764
+ "urls": [
765
+ "https://cdn.appthen.com/material/118294/cross-ui/4.1.12/view.js",
766
+ "https://cdn.appthen.com/material/118294/cross-ui/4.1.12/view.css",
767
+ "https://cdn.appthen.com/editor/assets/tailwind/index-DhXyGtyJ-250509.css"
768
+ ],
769
+ "package": "cross-ui",
770
+ "title": "Appthen CrossUI",
771
+ "": "https://cdn.appthen.com/material/118294/cross-ui/4.1.12/view.css",
772
+ "library": "BizComps",
773
+ "version": "4.1.12"
774
+ },
775
+ "enable": true,
776
+ "metaFile": {
777
+ "url": "https://cdn.appthen.com/material/118294/cross-ui/4.1.12/meta.js",
778
+ "exportName": "CrossUiMeta"
779
+ },
780
+ "advanced": {
781
+ "replacePackage": "cross-ui",
782
+ "frames": [
783
+ "app"
784
+ ],
785
+ "clients": [
786
+ "weapp",
787
+ "h5",
788
+ "app"
789
+ ],
790
+ "prompt": "# 角色\n你是一位资深的 taro react 基础组件专家,专注于协助编写移动端前端代码。你对各类 taro 组件有深入的理解和丰富的实践经验,能够清晰、准确地运用组件为用户生成代码。\n\n## 技能\n### 技能 1: 代码生成需求处理\n1. 严格按照案例规范进行处理,使用 js 进行开发。\n2. 若需提供代码示例,必须给出清晰、可运行的代码片段,并添加适当的注释说明。\n3. taro 的 api 调用方式固定为 this.utils.xxx。\n4. 设定屏幕基准为 375px。\n5. 将导入 taro 物料的名称统一改成 cross-ui。\n6. 遵循 js 的规范处理代码,切勿使用 ts 规范。\n7. 调用 state 里面的数据时,务必使用 this.state.xxx 的格式。\n8. 统一使用如下循环方式:\n {[1, 2, 3].map((item, index) => (\n <Text children=\"文本\" className=\"text-sm text-[#333]\" />\n ))}\n9. 若代码中存在图片,使用占位图片地址,格式为高度/宽度 px,具体地址为 https://api.daidr.me/apis/imgholder/100x200 \n10. 前端 css 尽量使用 tailwind css 来处理\n\n### 技能 2: 组件使用\n仅使用 taro 组件来开发前端,不得使用其他组件。提供代码示例时,代码格式要规范,符合 taro 开发的语法要求以及给定案例的格式。函数定义直接采用 xxxx(){} 的形式处理。\n\n### 技能 3: 组件数据运用\n根据以下组件数据进行代码编写,清楚各组件的来源、分类及备注说明:\n\n| 组件名称 | 来源/分类 | 备注说明 |\n|------------------------|-------------------|----------------------------------|\n| **从 `@tarojs/components` 引入** | | |\n| `Picker` | Taro 原生 | 选择器组件 |\n| `SwiperItem` | Taro 原生 | 轮播项组件(需配合 `Swiper`) |\n| `PickerView` | Taro 原生 | 滚动选择器视图 |\n| `PickerViewColumn` | Taro 原生 | 滚动选择器的列 |\n| `Switch` | Taro 原生 | 开关组件 |\n| `Video` | Taro 原生 | 视频播放组件 |\n| `WebView` | Taro 原生 | 网页容器组件 |\n| `RichText` | Taro 原生 | 富文本渲染组件 |\n| **基础组件** | | |\n| `Text` | 业务组件 | 文本组件 |\n| `Image` | 业务组件 | 图片组件 |\n| `ImageBackground` | 业务组件 | 背景图容器 |\n| `View` | 业务组件 | 视图容器(类似 `div`) |\n| `ScrollView` | 业务组件 | 可滚动容器 |\n| `Row` / `Col` | 业务组件 | 栅格布局组件 |\n| `Page` | 业务组件 | 页面布局容器 |\n| `SafeView` | 业务组件 | 安全区域视图(适配刘海屏) |\n| `Component` | 业务组件 | 基础组件布局容器 |\n| `TabView` | 业务组件 | 标签页布局容器 |\n| **表单组件** | | |\n| `AtButton` | 业务组件 | 按钮组件 |\n| `AtCheckbox` | 业务组件 | 复选框组件 |\n| `AtRadio` | 业务组件 | 单选框组件 |\n| `AtInputNumber` | 业务组件 | 数字输入框 |\n| `AtSearchBar` | 业务组件 | 搜索栏组件 |\n| `AtSlider` | 业务组件 | 滑动输入条 |\n| `AtRate` | 业务组件 | 评分组件 |\n| `Input` | 业务组件 | 基础输入框 |\n| `Textarea` | 业务组件 | 多行文本输入框 |\n| **展示组件** | | |\n| `AtAvatar` | 业务组件 | 头像组件 |\n| `AtBadge` | 业务组件 | 徽标组件 |\n| `AtIcon` | 业务组件 | 图标组件 |\n| `AtNoticebar` | 业务组件 | 通知栏组件 |\n| `AtTag` | 业务组件 | 标签组件 |\n| `AtActivityIndicator` | 业务组件 | 加载指示器 |\n| `Spin` | Ant Design | 旋转加载动画 |\n| `AtDivider` | 业务组件 | 分割线组件 |\n| `AtCalendar` | 业务组件 | 日历组件 |\n| `AtSwipeAction` | 业务组件 | 滑动操作组件 |\n| **布局与交互** | | |\n| `AutoList` | 业务组件 | 自动列表(动态渲染) |\n| `Swiper` | 业务组件 | 轮播组件 |\n| `Modal` | 业务组件 | 模态弹窗 |\n| `FooterBar` / `HeaderBar` | 业务组件 | 页脚/页头导航栏 |\n| **其他功能组件** | | |\n| `config` | 工具 | 项目全局配置 |\n| `addPortal` / `removePortal` | 工具 | 动态挂载/卸载组件(Portal 功能) |\n| `showComponentModal` | 工具 | 显示组件模态框 |\n\n### 技能 4: 代码输出规范\n按照以下代码输出案例的格式和结构进行代码编写与输出:\n\n```\nimport { Text, AtButton, AtIcon, AtAvatar, Image, View, Page } from 'cross-ui'; // 这里的 cross-ui 就是 taro。\n \n/*\n * 数据与接口请求定义\n */\nclass IState { // 必须存在的外封装\n /* 文字绑定说明 */\n data?: string;\n}\n\nclass Document extends React.Component { // 这里不变,所有的创建均为这个名称\n state = { data: '文字绑定说明' }; // 用于 state 字段处理\n\n /*\n * 页面加载后执行\n */\n componentDidMount() { \n // 页面加载后执行\n }\n\n /*\n * 点击操作案例\n */\n clickTheOperationCase() {\n // 使用 data 案例\n this.setState({\n data: '测试',\n });\n }\n\n render() { // 必须存在的外封装\n return ( // 必须存在的外封装\n\n <Page statusBarMode=\"light\"> // 必须存在的外封装\n // 下面是内部组件的使用\n <View className=\"flex flex-col\">\n <Text children={this.state.data} className=\"text-sm text-[#333]\" />\n <AtButton\n children=\"改变文字\"\n type=\"primary\"\n onClick={(e) => this.clickTheOperationCase()}\n />\n <AtIcon value=\"clock\" size={30} color=\"#666\" />\n <AtAvatar size=\"normal\" circle={true} />\n <Image\n src=\"\"\n remote={false}\n fit={false}\n className=\"w-[20px] h-[20px]\"\n />\n </View>\n </Page> \n ); \n }\n}\n\n\n```\n\n## 限制:\n- 只使用 taro 组件开发前端,不得使用其他组件。\n- 提供的代码示例格式要规范,严格符合 taro 开发的语法要求和给定案例。 \n- 严格遵循 js 的规范处理,不得使用 ts 规范。\n- 函数定义必须直接使用 xxxx(){} 的形式处理。 "
791
+ },
792
+ "utils": [],
793
+ "components": [],
794
+ "projectId": "6429aa2d8aa31da63ff7e900"
795
+ },
796
+ {
797
+ "package": {
798
+ "library": "wx",
799
+ "package": "weixin-js-sdk",
800
+ "title": "Weixin H5 JS-SDK",
801
+ "version": "1.6.5",
802
+ "urls": [
803
+ "https://res.wx.qq.com/open/js/jweixin-1.6.0.js"
804
+ ],
805
+ "destructuring": true,
806
+ "": "https://res.wx.qq.com/open/js/jweixin-1.6.0.js"
807
+ },
808
+ "enable": true,
809
+ "metaFile": {
810
+ "exportName": "",
811
+ "url": ""
812
+ },
813
+ "advanced": {
814
+ "replacePackage": "",
815
+ "frames": [
816
+ "app"
817
+ ],
818
+ "clients": [
819
+ "web",
820
+ "h5"
821
+ ],
822
+ "extendCode": "window.wx = require('weixin-js-sdk');"
823
+ },
824
+ "utils": [
825
+ {
826
+ "name": "wx",
827
+ "npm": {
828
+ "package": "weixin-js-sdk",
829
+ "exportName": "defailt",
830
+ "subName": ""
831
+ }
832
+ }
833
+ ],
834
+ "components": [],
835
+ "projectId": "6429aa2d8aa31da63ff7e900"
836
+ },
837
+ {
838
+ "package": {
839
+ "urls": [
840
+ "https://cdn.appthen.com/material/118294/@appthen/echarts/5.30.6/view.js"
841
+ ],
842
+ "package": "@appthen/echarts",
843
+ "title": "Echarts Component",
844
+ "library": "AppthenEcharts",
845
+ "": "https://cdn.appthen.com/material/118294/@appthen/echarts/5.30.6/view.js",
846
+ "version": "5.30.6"
847
+ },
848
+ "enable": true,
849
+ "metaFile": {
850
+ "url": "https://cdn.appthen.com/material/118294/@appthen/echarts/5.30.6/meta.js",
851
+ "exportName": "AppthenEchartsMeta"
852
+ },
853
+ "utils": [],
854
+ "components": [],
855
+ "advanced": {
856
+ "frames": [
857
+ "web"
858
+ ],
859
+ "clients": [
860
+ "web",
861
+ "weapp",
862
+ "h5",
863
+ "app"
864
+ ]
865
+ },
866
+ "projectId": "65e9a8f1547b64cfffde65cf"
867
+ },
868
+ {
869
+ "package": {
870
+ "urls": [
871
+ "https://cdn.appthen.com/editor/npm/echarts/echarts.min.js"
872
+ ],
873
+ "package": "echarts",
874
+ "": "https://cdn.appthen.com/editor/npm/echarts/echarts.min.js",
875
+ "library": "echarts",
876
+ "title": "Echarts",
877
+ "version": "5.5.0"
878
+ },
879
+ "enable": true,
880
+ "utils": [
881
+ {
882
+ "name": "echarts",
883
+ "npm": {
884
+ "package": "echarts",
885
+ "exportName": "*"
886
+ }
887
+ }
888
+ ],
889
+ "components": [],
890
+ "projectId": "65e9a8f1547b64cfffde65cf"
891
+ },
892
+ {
893
+ "package": {
894
+ "library": "ReactMarkdown",
895
+ "package": "react-markdown",
896
+ "title": "ReactMarkdown",
897
+ "version": "10.1.0",
898
+ "urls": [],
899
+ "destructuring": false,
900
+ "moduleType": "esm",
901
+ "libraryType": "component",
902
+ "esmExternals": {
903
+ "react": "window.React",
904
+ "react-dom": "window.ReactDOM"
905
+ }
906
+ },
907
+ "enable": false,
908
+ "metaFile": {
909
+ "exportName": "",
910
+ "url": ""
911
+ },
912
+ "advanced": {
913
+ "replacePackage": "",
914
+ "prompt": ""
915
+ },
916
+ "utils": [],
917
+ "components": [
918
+ {
919
+ "id": "7862234mhrolgik",
920
+ "componentName": "ReactMarkdown",
921
+ "npm": {
922
+ "package": "",
923
+ "exportName": ""
924
+ },
925
+ "title": "ReactMarkdown",
926
+ "configure": {
927
+ "props": [
928
+ {
929
+ "id": "0861230nzqhclwr",
930
+ "type": "string",
931
+ "setter": "StringSetter",
932
+ "name": "children",
933
+ "desc": "内容"
934
+ }
935
+ ],
936
+ "component": {
937
+ "isMinimalRenderUnit": true
938
+ },
939
+ "supports": {
940
+ "events": []
941
+ },
942
+ "advanced": {
943
+ "publicMethods": []
944
+ }
945
+ }
946
+ }
947
+ ],
948
+ "projectId": null
949
+ },
950
+ {
951
+ "package": {
952
+ "library": "clsx",
953
+ "package": "clsx",
954
+ "title": "clsx",
955
+ "version": "2.1.1",
956
+ "urls": [
957
+ ""
958
+ ],
959
+ "destructuring": true
960
+ },
961
+ "enable": true,
962
+ "metaFile": {
963
+ "exportName": "",
964
+ "url": ""
965
+ },
966
+ "advanced": {
967
+ "replacePackage": "",
968
+ "prompt": ""
969
+ },
970
+ "utils": [],
971
+ "components": [],
972
+ "projectId": null
973
+ },
974
+ {
975
+ "package": {
976
+ "library": "genai",
977
+ "package": "@google/genai",
978
+ "title": "@google/genai",
979
+ "version": "1.31.0",
980
+ "urls": [
981
+ ""
982
+ ],
983
+ "destructuring": true
984
+ },
985
+ "enable": true,
986
+ "metaFile": {
987
+ "exportName": "",
988
+ "url": ""
989
+ },
990
+ "advanced": {
991
+ "replacePackage": "",
992
+ "prompt": ""
993
+ },
994
+ "utils": [],
995
+ "components": [],
996
+ "projectId": null
997
+ },
998
+ {
999
+ "package": {
1000
+ "moduleType": "esm",
1001
+ "libraryType": "component",
1002
+ "urls": [],
1003
+ "esmCondition": "development",
1004
+ "esmTarget": "browser",
1005
+ "package": "@ant-design/icons",
1006
+ "title": "@ant-design/icons",
1007
+ "version": "5.6.1",
1008
+ "library": "@ant-design/icons",
1009
+ "esmExternals": {
1010
+ "react": "window.React",
1011
+ "react-dom": "window.ReactDOM",
1012
+ "antd": "window.antd"
1013
+ },
1014
+ "destructuring": true
1015
+ },
1016
+ "enable": false,
1017
+ "metaFile": {
1018
+ "exportName": "",
1019
+ "url": ""
1020
+ },
1021
+ "advanced": {
1022
+ "replacePackage": "",
1023
+ "prompt": ""
1024
+ },
1025
+ "utils": [],
1026
+ "components": [],
1027
+ "projectId": null
1028
+ },
1029
+ {
1030
+ "package": {
1031
+ "moduleType": "esm",
1032
+ "libraryType": "component",
1033
+ "urls": [],
1034
+ "esmCondition": "development",
1035
+ "esmTarget": "browser",
1036
+ "package": "@ant-design/x-markdown",
1037
+ "title": "@ant-design/x-markdown",
1038
+ "version": "2.1.1",
1039
+ "library": "@ant-design/x-markdown",
1040
+ "destructuring": true,
1041
+ "esmExternals": {
1042
+ "react": "window.React",
1043
+ "react-dom": "window.ReactDOM"
1044
+ }
1045
+ },
1046
+ "enable": false,
1047
+ "metaFile": {
1048
+ "exportName": "",
1049
+ "url": ""
1050
+ },
1051
+ "advanced": {
1052
+ "replacePackage": "",
1053
+ "prompt": ""
1054
+ },
1055
+ "utils": [],
1056
+ "components": [
1057
+ {
1058
+ "id": "8018249wghcqksl",
1059
+ "componentName": "XMarkdown",
1060
+ "npm": {
1061
+ "package": "",
1062
+ "exportName": "XMarkdown"
1063
+ },
1064
+ "title": "XMarkdown"
1065
+ }
1066
+ ],
1067
+ "projectId": null
1068
+ },
1069
+ {
1070
+ "package": {
1071
+ "moduleType": "esm",
1072
+ "libraryType": "component",
1073
+ "urls": [],
1074
+ "esmCondition": "development",
1075
+ "esmTarget": "browser",
1076
+ "package": "@ant-design/x",
1077
+ "title": "@ant-design/x",
1078
+ "version": "2.1.1",
1079
+ "library": "@ant-design/x",
1080
+ "destructuring": true,
1081
+ "esmExternals": {
1082
+ "react": "window.React",
1083
+ "react-dom": "window.ReactDOM",
1084
+ "antd": "window.antd"
1085
+ }
1086
+ },
1087
+ "enable": false,
1088
+ "metaFile": {
1089
+ "exportName": "",
1090
+ "url": ""
1091
+ },
1092
+ "advanced": {
1093
+ "replacePackage": "",
1094
+ "prompt": ""
1095
+ },
1096
+ "utils": [],
1097
+ "components": [
1098
+ {
1099
+ "id": "8670991dunaxsqi",
1100
+ "componentName": "Bubble",
1101
+ "npm": {
1102
+ "package": "",
1103
+ "exportName": "Bubble"
1104
+ },
1105
+ "title": "Bubble"
1106
+ },
1107
+ {
1108
+ "id": "8697723wliamvky",
1109
+ "componentName": "CodeHighlighter",
1110
+ "npm": {
1111
+ "package": "",
1112
+ "exportName": "CodeHighlighter"
1113
+ },
1114
+ "title": "CodeHighlighter"
1115
+ }
1116
+ ],
1117
+ "projectId": null
1118
+ }
1119
+ ]
1120
+ }